To hide the "broken image" icons for your IE users : error « jQuery « JavaScript DHTML






To hide the "broken image" icons for your IE users

 


$("img").error(function(){
  $(this).hide();
});

   
  

Related examples in the same category