Skip to content

Instantly share code, notes, and snippets.

@aarifhsn
Created March 23, 2014 18:24
Show Gist options
  • Save aarifhsn/9727275 to your computer and use it in GitHub Desktop.
Save aarifhsn/9727275 to your computer and use it in GitHub Desktop.
<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