[jQuery] event.stopPropagation() is preventing a live event on a child element

2009-07-06 Thread joeformd
As far as I understood, stopPropagation() is supposed to stop events bubbling 'up' though the element tree (through parent elements). Eg. If I use stopPropagation() on a click event on an anchor element in a list, the event would not be triggered on the list. In my code I have a popup div, that

[jQuery] Re: event.stopPropagation() is preventing a live event on a child element

2009-07-06 Thread joeformd
hmm, the original liveQuery plugin seems to work as expected, so I'm using that instead. On Jul 6, 1:31 pm, joeformd joelan...@gmail.com wrote: As far as I understood, stopPropagation() is supposed to stop events bubbling 'up' though the element tree (through parent elements). Eg. If I use