Jump to content

Prevent event bubbling with jquery


cs.punk

Recommended Posts

			$('input[type=checkbox]').change(function(event) {

				var c = this.checked ? '#CCCCCC' : '#ECECEC';
    				$(this).parent().parent().css('color', c);
				event.stopPropagation();
			});


			$('table tr').click(function() {

				alert('test');

			});

 

Can anybody tell me why the click event of the table row gets fired, when the checked state of the check box changes?

Link to comment
https://forums.phpfreaks.com/topic/267015-prevent-event-bubbling-with-jquery/
Share on other sites

They're two separate events. When they're fired they make their way up the DOM tree individually. If you changed the checkbox to a 'click' event, it would work. Of course though that wouldn't work if you changed the value of it using the keyboard. I would just detect the origin element in the event object, and conditionally run the 'click' event's code if it's not the input.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.