Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Created February 21, 2017 09:18
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/af57f2d4768fa47e52c9d9c58e0e060d to your computer and use it in GitHub Desktop.
Save koentjuh1/af57f2d4768fa47e52c9d9c58e0e060d to your computer and use it in GitHub Desktop.
Refresh reaload on certain point
var width = $(window).width();
$(window).resize(function() {
if (width > 1100 && $(window).width() < 1100) {
location.reload();
}
else if (width < 1100 && $(window).width() > 1100) {
location.reload();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment