[jQuery] syntax for $(response).$('a').each()

[jQuery] syntax for $(response).$('a').each()


$('#divid').load(url, function( response ){
$(response).$('a').each(function(i){
// do stuff
});
});
Unfortunately, that doesn't work, what's the correct syntax for that?