Comment trouver la balise IMG la plus proche dans jQuery
$('div.pinIt').click(function() {
var url = $(this).closest('.showPin').find('img.lazy').attr('src');
alert(url);
});
San