$(\'img.product_image\').attr(\'src\').change(function() { alert($(\'img.product_image\').attr(\'src\')); });
Hi ya\'ll
I am trying to
You can use .load event in this case:
.load
$('img.product_image').on('load', function () { alert($('img.product_image').attr('src')); });