I have a button which creates a pulldown in which you can select several categories. Now i want this to close automatically when i click outside the pulldown. Something like a lightbox or modal popup which closes if you click anywhere else on the page. Now i have to click the button again to close it. If i dont and go elsewhere on the page, the dropdown stays visible (until i click it)
This is the code of the button:
$(function(){
    $('#browse-btn').click(function(){
        $('#browse-content').toggle('1000');
        $(this).toggleClass('active');                          
        if ($(this).hasClass('active')) $(this).find('span').html('▲')
        else $(this).find('span').html('▼')
    });
    $(".scroll-top").scrollToTop();
    $("#category_id").selectbox();
});
Is this possible? thanks
 
     
     
    