Skip to content

Instantly share code, notes, and snippets.

Created March 5, 2012 23:43
Show Gist options
  • Save anonymous/1982119 to your computer and use it in GitHub Desktop.
Save anonymous/1982119 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').on("click", function() {
box.animate({
'left': w,
'top': h,
'position': 'absolute'
});
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment