
fixBroken is a simple yet useful JavaScript library that replace the broken image which can not be found in your web server with a custom placeholder using Html5 data-attribute.
Basic usage:
Load the fixBroken JavaScript library in your project.
<script src="src/fixBroken.js"></script>
use data-fallback attribute to specify the placeholder image source.
<img src="404.png" data-fallback="placeholder.jpg">
Initialization.
fixImages.init();







