[Solved] How to create drop down menu in top of website using jquery, html, css in my exist website [closed]
Very simple way for add drop down menu to add in your website. Check my article jQuery Drop down menu $(function() { $(‘nav li ul’).hide().removeClass(‘fallback’); $(‘nav li’).hover(function() { $(‘ul’, this).stop().slideToggle(200); }); }); * { margin: 0; padding: 0; } a img { border: none; } a { text-decoration: none; } body { font: 400 12px/1.625 … Read more