image broken icon from nowhere code example

Example 1: HIDE BROKEN IMAGES

$('img').on('error', function(){
      $(this).hide();
  });

  /*// OR replace
  ---------------------------*/
  $('img').on('error', function (){
      $(this).attr('src', '/path/to/image/default.png');
  });

Example 2: broken hyperlink

1-Collect all the links in the web page based on <a> tag.
2-Send HTTP request for the link
and read HTTP response code.
3-Find out whether the link is valid 
or broken based on HTTP response code.
4-Repeat this for all the links captured.

Tags:

Misc Example