https://youtu.be/NaqEx12tz_g Video with a problem!

The problem is that when you press the menu button should not be lost!

$( "#clickmee" ).click(function() { $( "#hov_menu" ).slideToggle( "slow", function() { }); }); 

Closed due to the fact that the essence of the question is not clear to the participants user207618, cheops , user194374, Grundy , Streletz 13 Aug '16 at 9:53 .

Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .

  • 2
    Try this way, here comes the blocking of the browser action on the link. $( "#clickmee" ).click(function(e) { $( "#hov_menu" ).slideToggle( "slow", function() { }); e.preventDefault(); }); - Maqsood
  • Pasib worked! - Admiral

1 answer 1

 $(document).ready(function() { $(".nav_btn").click(function() { $(this).next().slideToggle(); }); 

Try to put! Important yet

  • Where in this code should I put !important ? :) - Grundy