Answer the question
In order to leave comments, you need to log in
How to hide drop down menu on scroll?
Good afternoon.
In the mobile version of this site , when you click on the "burger" menu drops out. But how can you hide it on scroll down if it is open without clicking on the burger again? Now implemented like this:
(function ($) {
$(document).ready(function(){
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('#dropmenu').fadeOut();
}
});
});
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question