To hide the "broken image" icons for your IE users : error « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- error
To hide the "broken image" icons for your IE users
$("img").error(function(){
$(this).hide();
});
Related examples in the same category