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() { }); });
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() { }); });
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 .
Source: https://ru.stackoverflow.com/questions/554470/
All Articles
$( "#clickmee" ).click(function(e) { $( "#hov_menu" ).slideToggle( "slow", function() { }); e.preventDefault(); });
- Maqsood