I want to edit src attribute of all my images. I actually want to remove remove "\test" from all the images src. I have tried replace and src.replace in jquery, but it didn't work out can. Please help how to do that.
$("img").each(function(){
var srcVar = this.attr('src');
this.attr('src', "http://www.abc.gr"+srcVar);
});