var image = $('<img src="/images/myimage.png" />');
if (image.attr('width') > 0)
imageExists = true;
else
imageExists = false;
jQuery Check if image exists
There is a quick way to do this without using AJAX to check for a 404.
Updated:There is a quick way to do this without using AJAX to check for a 404.
Updated:var image = $('<img src="/images/myimage.png" />');
if (image.attr('width') > 0)
imageExists = true;
else
imageExists = false;