Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Created March 14, 2016 11:26
Show Gist options
  • Save koentjuh1/a9e1cd6ab1aedbadc853 to your computer and use it in GitHub Desktop.
Save koentjuh1/a9e1cd6ab1aedbadc853 to your computer and use it in GitHub Desktop.
jQuery if window width is between
$(document).ready(function(){
if ( $(window).width() > 480 && $(window).width() < 768) {
} else{
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment