I have a layout similar to this:
and would like to use a jQuery selector to selec
jQuery's each is one option:
each
$('#test img').each(function(){ console.log($(this).attr('src')); });