Created
August 14, 2015 15:36
-
-
Save pablocattaneo/44b72e5e17c458c4b017 to your computer and use it in GitHub Desktop.
Code for specific viewport width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(jQuery(window).width() <= 768 ){ | |
jQuery('.menu-wp-carrefour .tituloNivel3').click(function(event) { | |
jQuery('.menu-wp-carrefour li').toggle(); | |
}); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(jQuery(window).width() <= 768 ){ | |
// your code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment