This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- https://stackoverflow.com/a/22051972 --> | |
<img src="Error.src" onerror="this.style.display='none'"/> | |
<img src="Error.src" onerror="this.src='fallback-img.jpg'"/> |
onerror="this.src='fallback-img.jpg'"
onerror="this.src='fallback-img.jpg'"
Top comments (4)
Wow, I had no idea img tags had an onerror attribute! Thanks!
Most JS events can be used as attributes. Usually not recommended; even in this case depending on the scale it may be better/cleaner to have a error handler listening for any image error.
If you're interested is event attributes, Mozilla has some nice documentation on it: developer.mozilla.org/en-US/docs/W...
Ther is an error in the inlined code.
onerror="this.src='this.src='fallback-img.jpg'"
seen it... thanks...