Your Ad Here

Posted By

Ray on 01/15/11


Tagged

jquery


Versions (?)

Who likes this?

5 people have marked this snippet as a favorite

demods
maltem
johnw
virendrakryadav
nehringryan


Missed images


 / Published in: jQuery
 

Styling of missed images

  1. $(document).ready(function(){
  2. $('img').error(function(){
  3. $(this).attr({
  4. src: '/img/missing-image.jpg',
  5. alt: 'Image is not available...',
  6. style:'width:50px; height:50px;'
  7. });
  8. });
  9. });

Report this snippet  

You need to login to post a comment.