Here's the problem I'm having. I have two jQuery .live() events, both for click events. These are initialized at the beginning of the page's load; they then wait until items matching the selector come along and are clicked on. Now, the problem with these is that when an item is added to the DOM that matches the selector, the live events are unbound (or maybe not - they just don't work at all. I've verified that they aren't even being called, too (set a breakpoint inside of the function in Firebug, and when I clicked a link matching the selector, it never fired - thus the function isn't even being called).
Moreover, it isn't only live events that match these particular selectors that get screwed up - it's EVERY live event that is unbound (or whatever else is happening) when the new items are added.
Has anybody ever had any experiences like this with the live events in jQuery? ... Or found a solution?