Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <script>
  2. function imgError(image) {
  3. image.onerror = '';
  4. image.src = 'product_images/unavail.png';
  5. return true;
  6. }
  7. </script>
  8.  
  9.  
  10.  
  11. <!--<img src="<?php echo $pro_imagelink;?>" width="60" height="60"
  12. onError='imgError(this);'/>
  13. <img src="product_images/<?php echo $pro_image;?>" width="60"
  14. height="60" onerror="this.style.display='none'"/>-->
  15.  
  16. <img src="product_images/<?php echo $pro_image;?>" width="60"
  17. height="60" onerror="this.src='<?php echo $pro_imagelink ?>'"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement