JSFiddle - React, Tailwind, and code Playground
by vikastyagi87
HTML
<img alt="toto" src="http://www.wsoradio.com/wp-content/uploads/http://www.wsoradio.com/wp-content/files/acbreviews/a4/B001THPA4Y/smallimage.jpg">
<img alt="toto" src="http://www.wsoradio.com/wp-content/uploads/http://www.wsoradio.com/wp-content/files/acbreviews/a4/B001THPA4Y/smallimage.jpg">
<img src="http://www.thecodedeveloper.com/wp-content/uploads/2011/08/160920103701.jpg" />
JavaScript
$(document).ready(function(){
$('img').each(function(){
$(this).attr('src',$(this).attr('src').replace('http://www.wsoradio.com/wp-content/uploads/',''));
});
});