Embracing the Messiness in Search of Epic Solutions

HTML: Creating a Default Placeholder for Image that Fails to Load

Posted

in

PROBLEM

Let’s assume our web application relies on an external system to provide the image link, for example: employee photo link of a company.

<img src="http://external/server/employeeId.jpg">

If the image link is invalid, we will get the ugly looking “x” on certain browsers.

SOLUTION

To fix this, we can load an image placeholder from our own web application if the external image link fails to load for some reason:-

<img src="http://external/server/employeeId.jpg" onerror="this.src='http://server/app/resources/img/avatar.jpg'">

Tags:

Comments

Leave a Reply