Skip to content

Instantly share code, notes, and snippets.

@Twipped
Forked from anonymous/gist:1982119
Created March 6, 2012 00:00
Show Gist options
  • Save Twipped/1982289 to your computer and use it in GitHub Desktop.
Save Twipped/1982289 to your computer and use it in GitHub Desktop.
jquery trubz
(function() {
var box = $('div.box'),
w = $(window).width() / 2 - box.outerWidth() / 2;
h= $(window).height() / 2 - box.outerHeight() / 2 ;
$('button').css('position', 'absolute').on("click", function() {
box.animate({
'left': w,
'top': h
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment