Skip to content

Instantly share code, notes, and snippets.

@tammyhart
Last active June 16, 2016 07:57
Show Gist options
  • Save tammyhart/6202658 to your computer and use it in GitHub Desktop.
Save tammyhart/6202658 to your computer and use it in GitHub Desktop.
Set the window width to on load and on resize so you can run jQuery at certain browser sizes
var windowWidth;
function setWidth() {
windowWidth = $( window ).width();
}
setWidth();
$( window ).resize( setWidth );
if ( windowWidth < 768 ) {
...
}
if ( windowWidth > 320 ) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment