mirror of
https://github.com/Daniongithub/ER-TPL.git
synced 2025-10-02 19:30:48 +00:00
8 lines
252 B
JavaScript
8 lines
252 B
JavaScript
document.querySelectorAll('img').forEach(img => {
|
|
img.addEventListener('error', function () {
|
|
const fallback = this.getAttribute('data-fallback');
|
|
if (fallback && this.src !== fallback) {
|
|
this.src = fallback;
|
|
}
|
|
});
|
|
}); |