Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const brokenImages = () => {
  2.     const placeholderPath = 'app/img/weholi-place-holder-image.png';
  3.     const images = document.getElementsByTagName('img');
  4.  
  5.     for (let i = 0; i < images.length; i++) {
  6.         const image = images[i];
  7.         image.onerror = () => {
  8.             image.src = placeholderPath;
  9.         }
  10.     }
  11. };
  12.  
  13. document.addEventListener('DOMContentLoaded', brokenImages);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement