I need to change the src for an html image tag from relative to absolute url.
src
I am using the following code. urlRelative and urlAbsolute are created correct
Instead of below code:
$(this).attr("src").replace(urlRelative, urlAbsolute);
Use this:
$(this).attr("src",urlAbsolute);