Search code examples
javascripthtmlimagealt

alt attribute for Image tag in html


Scenario:

 <img src="filepath" alt="image not found">

This will make sure that if the file is not found in the path then the text would be loaded .....

Question: Instead of a alternative text can a image be loaded ?? is there any tags would readily serve my purpose and is there any custom javascript functions which could be given in #alt tag??


Solution

  • There is a special event wich allow you to make this. It's :

    <img src="" onerror="this.src='path/to/default'" />