Skip to content

Instantly share code, notes, and snippets.

@phamquocbuu
Created October 5, 2013 01:38
Show Gist options
  • Save phamquocbuu/6835557 to your computer and use it in GitHub Desktop.
Save phamquocbuu/6835557 to your computer and use it in GitHub Desktop.
JavaScript Set Center
function setCenter(elm) {
w = $(window).width();
lr = ( w - $(elm).width() ) / 2;
h = $(window).height();
tb = ( h - $(elm).height() ) / 2;
$(elm).css({
"margin-left" : lr,
"margin-right" : lr,
"margin-top" : tb,
"margin-bottom" : tb
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment