I am having an issue with the new live events in jQuery 1.3. Specifically I am having an regarding event bubbling. I have a a list of items, each item element looks like : <li><a>bla</a></li>. When the user clicks on the li element one thing should happen, and when the user clicks on the a element another thing should happen (The css styles are such that the user can easily see what to do). I will be dynamically adding and removing items from the list, hence the reason to use live events.
When I use live events and click on the a element the li elements click handler is also fired even though I am using the stopPropagation function (and I've tried return false as well). If I use the normal bind function then it works 100%. Is there a possible bug in the live events implementation, or am I missing something? Walther.