Skip to content

Instantly share code, notes, and snippets.

@objectivehtml
Created March 3, 2014 22:35
Show Gist options
  • Select an option

  • Save objectivehtml/9336090 to your computer and use it in GitHub Desktop.

Select an option

Save objectivehtml/9336090 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function (){
$(".nav-toggle").click(function(e) {
$('.first').removeClass("opened");
$(this).parent().addClass("opened");
e.preventDefault();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment