Skip to content

Instantly share code, notes, and snippets.

@MaraScott
Last active December 14, 2015 01:59
Show Gist options
  • Select an option

  • Save MaraScott/5010456 to your computer and use it in GitHub Desktop.

Select an option

Save MaraScott/5010456 to your computer and use it in GitHub Desktop.
Name : window.resize - Language : javascript - type : feature - platform : jQuery - tag :
// do something if window size change
jQuery(window).resize(function() {
"use strict";
if(jQuery(window).height() < 500) {
console.log('do something');
}else{
console.log('do something else');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment