JSFiddle - React, Tailwind, and code Playground

by Deepak Manwal

HTML

<img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window-16x16.png"></img>
 <img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window.png"></img>
 <img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window-16x16.png"></img>
 <img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window.png"></img>
 <img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window.png"></img>
 <img width="16" height="16" border="0" alt="New Window" title="New Window" src="http://www20.myfantasyleague.com/window.png"></img>

JavaScript

$("img").each(function() {  
   var imgsrc = $(this).attr('src');
   if(imgsrc.indexOf('window-16x16.png')>-1){
      $(this).attr('src','new-img-src.png');
    }
  });