Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Propagation issue Re: [Solved] Propagation issue

#76024
noahgelman
Participant

I added:

Code:
$(‘.drop-down’).hover(function(event) {
event.stopPropagation();
});

after my code. Didn’t even need to make it a call back. My first attempt was trying to add the event.stopPropagation to the list-items when I should have just tossed it on the drop down.