Remove Broken Images
The MooTools Javascript
Im Internet Explorer fallen kaputte Bildlinks deutlich ins Auge, David Walsh zeigt eine MooTools und eine jQuery Möglichkeit diese Bilder zu entfernen:
The MooTools way:
$$('img').addEvent('error',function() {
this.dispose();
});
The jQuery Javascript way:
$('img').error(function() {
$(this).remove();
});
Ich mag schöne einfache Scripte

