I have a typical AJAX call that appends some HTML to the current page. I want to be able to access the newly inserted HTML with typical jQuery selectors.
Here\'s wha
how about:
$.ajax({ url: url, success: function(data) { $('body').append(data).find('#new_div').show(); } });