I am trying to hide an image when there is no image found.
.js file:-
jQuery("#imgUrl").error(function () {
jQuery(this).hide();
});
jsp:-
<img id="imgUrl" src="{imgSrcUrl}" alt="image")/>
Firefox and IE browsers its working when image file is not available. Please help. Example:- imgSrcUrl => src="/images/category/aline.jpg" and this image file is not available.