is there a way to get safari not to show the "broken image" symbol, when an image was not found? firefox does this by default.
i'd preferrably do this with css, but i think javascript will be the way to go... i am using jquery already, eg something like this would be great:
$(document).ready(function(){
$('img').broken().hide();
});
From the jQuery documentation:
$("img").error(function(){
$(this).hide();
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With