Skip to content

Instantly share code, notes, and snippets.

@steveobbayi
Created March 31, 2016 16:57
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 steveobbayi/96c9f1f6f6686fd7e240c19a29aa7ab9 to your computer and use it in GitHub Desktop.
Save steveobbayi/96c9f1f6f6686fd7e240c19a29aa7ab9 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
var targetWidth = 768;
if ( $(window).width() >= targetWidth) {
//Add your javascript for screens wider than or equal to 768 here
}
else {
//Add your javascript for screens smaller than 768 here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment