Skip to content

Instantly share code, notes, and snippets.

@fatihtoprak
Created April 21, 2014 04:39
Show Gist options
  • Save fatihtoprak/11132405 to your computer and use it in GitHub Desktop.
Save fatihtoprak/11132405 to your computer and use it in GitHub Desktop.
Simple jQuery Mobile menu detect
var mobileMenu = $(window).width();
$(window).resize(function() {
mobileMenu = $(window).width();
if (mobileMenu < 720) {
$('#allCategroyList').removeClass('catNav');
$('#allCategroyList').addClass('mobileNav');
} else {
$('#allCategroyList').addClass('catNav');
$('#allCategroyList').removeClass('mobileNav');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment