[jQuery] Evaluating scripts after an ajax get
Hi,
I have a page that can make an ajax request (using get) that returns
html. I insert the returned html into the page. The html includes
ready() functions that attach event handlers for clicks. I use
something like:
jQuery('#content').before(data);
to insert the html. Is there a way to make the scripts evaluate?
Thanks