vote up 0 vote down star
1

I have a problem with the following code in an ASPX page:

<script type="text/javascript">
$(document).ready(function() {
	$('.test').click(function() {
		alert("click")
	})
});
</script>

<asp:CheckBox runat="server" Text="Checkbox XYZ" CssClass="test" ID="cb1" />

In the browser (FF3.5 / IE8) I have the following problem:

  • if I click the checkbox (the small square), it works as expected
  • if I click the checkbox's text ("Checkbox XYZ"), then the click event is fired twice, and the alert is shown twice

I guess this has to do with the way the checkbox is rendered to HTML, which is like this:

<span class="test">
 <input id="ctl00_c1_cb1" type="checkbox" name="ctl00$c1$cb1" checked="checked" />
 <label for="ctl00_c1_cb1">Checkbox XYZ</label>
</span>

How do I correctly setup the click event handler to prevent it from being called twice?

flag

65% accept rate

3 Answers

vote up 1 vote down

Well after reading my question again, I found a way how to solve it.

Just add "input" to the jQuery selector:

<script type="text/javascript">
$(document).ready(function() {
        $('.test input').click(function() {
                alert("click")
        })
});
</script>

I'm not sure if this is the recommended/correct way.

link|flag
@Martin - I think it's because a label with a for attrbute raises the click event of the element that is attached to. So in your jQuery code, you set up a click event handler for both the label and the input. when clicking on the label, the click event handler that you set up on the label will execute, then the click event handler set up on the input will execute when the label raises the click event. – Russ Cam Oct 8 at 9:34
Thanks Russ, that makes sense. I would have upvoted if you had created an answer. – Martin Oct 8 at 9:36
vote up 0 vote down

What you are seeing is event bubbling. The click event is first handled by the label and is then passed on to the checkbox. You get one alert for each. To prevent event bubbling you need to return false in your click handler.

$(document).ready(function() {
        $('.test').click(function() {
                alert("Click");
    			return false;
        })
});

However while this prevents event bubbling it also has the undesirable side effect of preventing the checkbox from changing state. So you'll need to code around that.

link|flag
vote up 1 vote down

I think it's because a <label> with a for attribute raises the click event of <input type="radio"> or <input type="checkbox"> element that is associated for when clicked.

So in your jQuery code, you set up a click event handler for both the <label> and the <input> inside <span class="test">. When clicking on the <label>, the click event handler that you set up on the label will execute, then the click event handler set up on the <input> will execute when the label raises the click event on the <input>.

link|flag

Your Answer

Get an OpenID
or

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