Question

I have a stupid question. Can somebody explain me, why event still starts on .outer? Even when I have set .stopPropagation(). I suppose, I don't understand the issue correctly. When I click on .inner, event should not bubble up to .outer

HTML:

<div class="outer">asdsad
    <div class="inner">asdadsasd</div>
</div>

JavaScript:

$('.outer').on('click', function(e) {
    e.stopPropagation();
    $('.inner').toggleClass('hidden');
})

Fiddle

Was it helpful?

Solution

You need to use:

$('.inner').on('click', function (e) {   
    e.stopPropagation();
})

$('.outer').on('click', function (e) {   
    $('.inner').toggleClass('hidden');    
})

since e.stopPropagation() prevent event buble up not down the DOM tree

Updated Fiddle

OTHER TIPS

If you want to handle click on .inner different from click on .outer, you should have two event handlers. In the .inner click handler you can then prevent the event from bubbling up, so that clicking on .inner will not trigger the click event handler on .outer

$('.inner').on('click', function(e) {
   ...
   e.stopPropagation();
});

$('.outer').on('click', function(e) {
   ...
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top