> $(this).find('img').attr('src');

jQuery selectors accept a 2nd argument for context, which makes this a
bit more readable, imo:

var src = $('img',this).attr('src');

Reply via email to