Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 386 Bytes

click-outsite-close0mega.md

File metadata and controls

11 lines (11 loc) · 386 Bytes

Click outside of container to close the drop down menu

Site: https://www.knoxre.com

$(document).on('click', function(e) {
        var container = $('.mega');
        if (!container.is(e.target) && container.has(e.target).length === 0) {
            $('.mega').removeClass('mega-current');
            $('.mega .mega-drop').removeClass('opened');
        }
    });