Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koentjuh1/0c62e65041fe427ef696 to your computer and use it in GitHub Desktop.
Save koentjuh1/0c62e65041fe427ef696 to your computer and use it in GitHub Desktop.
Jquery: Refresh page when windows size change
jQuery(function($){
var windowWidth = $(window).width();
$(window).resize(function() {
if(windowWidth != $(window).width()){
location.reload();
return;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment