I am wondering how I use Jquery selectors within the Ajax response. My site has a feed and each main block has a unique ID, but I dont want to uniquly ID every div thats wit
I assume you're referring to referencing this in a callback function. You can do something like this:
this
$('#stuff').click(function() { var $this = $(this); $.get('...', function() { //do stuff with $this }); });