Skip to content

Instantly share code, notes, and snippets.

@wmeredith
Last active November 13, 2015 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wmeredith/4d0f932334a641f4c797 to your computer and use it in GitHub Desktop.
Save wmeredith/4d0f932334a641f4c797 to your computer and use it in GitHub Desktop.
Center an element with jquery
$('#element').ready(function() {
$(this).css({
'position' : 'absolute',
'left' : '50%',
'top' : '50%',
'margin-left' : -$('#element').outerWidth()/2,
'margin-top' : -$('#element').outerHeight()/2
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment