$ is a global object that calls find(), not a method of jQuery objects. Use the find() method directly:
$(response).find('a').each(function(i){... - ricardo On Dec 18, 3:25 pm, Namotco <namo...@gmail.com> wrote: > $('#divid').load(url, function( response ){ > $(response).$('a').each(function(i){ > // do stuff > }); > }); > > Unfortunately, that doesn't work, what's the correct syntax for that?