I have a click event handler that looks like this:
$('#show_existing_suggestions').click(function()
But after some AJAX calls, it is no longer recognized by jQuery. Is there a way to do a live binding of that click handler? I think the reshuffling of the HTML is messing it up.
Thanks!!!
As of jQuery 1.7,
live()has been deprecated (thanks Vikk). Useon()instead.