jquery javascript get child of $(this) code example
Example 1: find name description jquery children()
{
'name': $(this).children('input[name="paramName"]').val(),
'value': $(this).children('input[name="paramPrice"]').val()
};
Example 2: how to access child img src in jquery
$('#carousel div').click(function(event) {
alert($(this).find('img').attr('src'));
});