I have implemented sticky.js on my website and it is working well. However, when I resize the browser to mobile view and click the main menu button, it goes up and I am unable to close it. I have to scroll up to see it again. How can I make it stick to the top and show the subsets properly?
Check out the live demo
This is the jQuery code I am using:
jQuery(document).ready(function(){
jQuery("#header").sticky({
className : 'sticky-header'
});
});
If you need more details, please let me know.