Skip to content

Instantly share code, notes, and snippets.

@ganeshaampuh
Created August 21, 2018 02:23
Show Gist options
  • Select an option

  • Save ganeshaampuh/04e7465febf563e9bd575dc59d1775bc to your computer and use it in GitHub Desktop.

Select an option

Save ganeshaampuh/04e7465febf563e9bd575dc59d1775bc to your computer and use it in GitHub Desktop.
Append Burger with JS and CSS - Javascript
jQuery(document).ready(function( $ ){
$("#main-header .rghtblck ul li:nth-child(4)").prepend("<div id='burger'><div>Menu</div> <div class='wrapper'><span></span><span></span><span></span></div></div>");
$("#et-top-navigation").hide();
$("#burger").click(function() {
$("#et-top-navigation").slideToggle();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment