/ Published in: jQuery
Styling of missed images
Expand |
Embed | Plain Text
$(document).ready(function(){ $('img').error(function(){ $(this).attr({ src: '/img/missing-image.jpg', alt: 'Image is not available...', style:'width:50px; height:50px;' }); }); });
You need to login to post a comment.
