Skip to content

Instantly share code, notes, and snippets.

@gaelbillon
Created September 25, 2012 12:05
Show Gist options
  • Save gaelbillon/3781364 to your computer and use it in GitHub Desktop.
Save gaelbillon/3781364 to your computer and use it in GitHub Desktop.
log window width & height on resize (paste in console & resize)
window.onresize = function(event) {
console.log("x: " + window.innerWidth+" y: " + window.innerHeight);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment