zubzizub
11/22/2016 - 3:09 PM

Use jQuery to hide a DIV when the user clicks outside of it

Use jQuery to hide a DIV when the user clicks outside of it

$(document).mouseup(function (e)
{
    var container = $(".js_dropdown_sort");

    if (!container.is(e.target) // if the target of the click isn't the container...
        && container.has(e.target).length === 0) // ... nor a descendant of the container
    {
        container.hide();
    }
});