jquery get all img src code example
Example 1: jquery get image src
$('.img1 img').attr('src');
Example 2: jquery get img src
$('img').attr(src);
Example 3: jquery get image src
$('#imageContainerId').prop('src')
$('.img1 img').attr('src');
$('img').attr(src);
$('#imageContainerId').prop('src')