Reputation: 172
How can we set default image in case if original image is not loaded or gives error and shows only alt text in place of image in html
Upvotes: 1
Views: 951
Reputation: 7165
try this way
<img id="currentPhoto" src="SomeImage.jpg" onerror="this.onerror=null; this.src='https://homepages.cae.wisc.edu/~ece533/images/airplane.png'" alt="" width="100" height="120">
Use onerror
for this issue
Upvotes: 2