Skip to content

Instantly share code, notes, and snippets.

@z-------------
Last active August 29, 2015 13:56
Show Gist options
  • Save z-------------/9088905 to your computer and use it in GitHub Desktop.
Save z-------------/9088905 to your computer and use it in GitHub Desktop.
Center an element on the screen
function gotoElem(sel) {
var targetElem = sel; // must be an element object, not a selector string
window.scrollTo(targetElem.offsetLeft+targetElem.offsetWidth/2-window.innerWidth/2,targetElem.offsetTop+targetElem.offsetHeight/2-window.innerHeight/2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment