Skip to content

Instantly share code, notes, and snippets.

@msrafi
Created June 29, 2015 21:17
Show Gist options
  • Save msrafi/569e0fdb640b7a0f8358 to your computer and use it in GitHub Desktop.
Save msrafi/569e0fdb640b7a0f8358 to your computer and use it in GitHub Desktop.
Check page zoom
$(document).on('scroll', function(){
var zoom = document.documentElement.clientWidth / window.innerWidth;
console.log(zoom);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment