Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create the illusion of a multiselect dropdown using a div that is toggled by pressing an empty dropdown. It works fine but I'd like to be able to hide it when clicking outside the div. How do I do this? I use the following code:

<script src="../js/jqGlobal.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript">
    $(document).ready(function () {
        $(".testColor").click(function () {
            $("#exampleDiv").toggle();
        });
        $("#exampleDiv").blur(function () {
            $("#exampleDiv").toggle();
        });
    });
</script>

<style type="text/css">
    #exampleDiv 
    {
        position: absolute;
        top:22px;
        left: 0px;
        width:198px;
        height:150px;
        overflow-y: scroll;
        overflow-x: hidden;
        border: 1px solid #7F9DB9;
        display: none;
    }

</style>

    <div style="position:relative;">
        <asp:DropDownList ID="DropDownList1" runat="server" Width="200" class="testColor">

        </asp:DropDownList>
        <div id="exampleDiv">
            <asp:CheckBox ID="CheckBox2" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox3" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox4" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox5" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox6" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox7" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox8" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox9" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox10" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox11" runat="server" />
            <br />
            <asp:CheckBox ID="CheckBox12" runat="server" />
            <br />
        </div>
    </div>
share|improve this question
Click outside and other interesting events for jquery: benalman.com/projects/jquery-outside-events-plugin – biziclop Jun 18 '12 at 14:09

3 Answers

up vote 0 down vote accepted

onclick any where on the page hide the div and cancel click propagation to parent elements when click on testColor

function cancelBubleEv(e)
{
     e = e||event;
     e.stopPropagation? e.stopPropagation() : e.cancelBubble = true;

}

$(document).ready(function () {
     $(document).click(function () {

        $("#exampleDiv").hide();

     });
     $(".testColor").click(function (e) {
         $("#exampleDiv").toggle();
         cancelBubleEv(e);
     });
     $("#exampleDiv").click(function (e) {
        cancelBubleEv(e);
     });

});

Edit:

Cancel event propagation when click on checkboxes

share|improve this answer
That code hides it when I press a checkbox as well. Is it tweakable? – Peter Saverman Jun 18 '12 at 14:27
sorry, i just forgot about that you can cancel bubble event on checkbox as well. i have edited the code. – Arif Jun 18 '12 at 14:43
Still the same problem. – Peter Saverman Jun 18 '12 at 14:48
this should work fine, did you added the code inside this $(document).ready(function () { }); block if not then add it in this block, i edited the code copy this code – Arif Jun 18 '12 at 14:52
1  
here is working code you can check jsfiddle.net/UnQMU – Arif Jun 18 '12 at 15:12
show 5 more comments

You could try .mouseout() instead of .blur()

share|improve this answer
Mouse out makes it jump a lot back and forth while moving the mouse over the controls inside of it. – Peter Saverman Jun 18 '12 at 14:23
var element = $("#exampleDiv");    

$(document).bind('mouseup', function (e){
     if (element.has(e.target).length === 0)
         $(element).hide();
});

$(element).click(function(){
    $(element).show();
})
share|improve this answer
There seems to be something wrong with that code. Is it missing a )? Sorry to have to ask but I'm not that good with jQuery. – Peter Saverman Jun 18 '12 at 14:24
1  
sorry, try again please – Cristi Pufu Jun 18 '12 at 14:26
Hey, now we're getting close! It works the way I'd like it to now except that when clicking the body of the div, i.e. missing a checkbox, the div disappears. Is it possible to remove that event from the #exampleDiv? – Peter Saverman Jun 18 '12 at 14:41
1  
I think now it's exactly what you wished for. I hope i helped you, good luck! – Cristi Pufu Jun 18 '12 at 15:06
It sure is. Thank you! – Peter Saverman Jun 19 '12 at 6:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.