Quantcast
Channel: User Chris - Stack Overflow
Viewing all articles
Browse latest Browse all 42

Answer by Chris for Hide /toggle if clicked outside

$
0
0

You're going to need to create an absolutely positioned div covering the content area you want to click to hide the sidebar you'll have to specify its width and height via CSS. It will also need its own click event. Think of it as kind of a huge button that covers the content that is on the left side. This example does not cover the case of hiding the div if you navigate to a different section.

$('#menu-toggle').click(function(e) { $('.covers-content').show();});$('.covers-content').onClick(function(e) { $('#wrapper').toggleClass("active"); $('.covers-content').hide();});<div class="covers-content" style="display:none"></div>

Viewing all articles
Browse latest Browse all 42

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>