how to access child img src in jquery code example
Example: how to access child img src in jquery
$('#carousel div').click(function(event) {
alert($(this).find('img').attr('src'));
});
$('#carousel div').click(function(event) {
alert($(this).find('img').attr('src'));
});