$(\'img.product_image\').attr(\'src\').change(function() { alert($(\'img.product_image\').attr(\'src\')); });
Hi ya\'ll
I am trying to
You could make use of load event if you like
$("img.product_image").load(function(){ alert("New image loaded"); });
Jsfiddle here