Created
March 23, 2014 18:24
-
-
Save aarifhsn/9727275 to your computer and use it in GitHub Desktop.
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
<script type="text/javascript"> | |
jQuery(document).ready(function(){ | |
//remove then default action of anchor tag | |
jQuery("a.small_device_menu").click(function(event){ | |
event.preventDefault(); | |
jQuery("div.small_menu_area").slideToggle(); //styling with a slide of an element when click this | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment