$('#divid').load(url, function( response ){
    $(response).$('a').each(function(i){
      // do stuff
    });
  });

Unfortunately, that doesn't work, what's the correct syntax for that?

Reply via email to