Thursday, 23 June 2011

click outside the Pop Div then Pop Div close

  var mouse_is_inside = false;

 $('#filterDivOuter').hover(function(){
        mouse_is_inside=true;
    }, function(){
        mouse_is_inside=false;
    });

    $("body").mouseup(function(){
        if(! mouse_is_inside) $('#filterDivOuter').hide();
    });

No comments:

Post a Comment