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
Your code can simplified a lot to
$('img', resp).attr('src', function(idx, urlRelative ) { return self.config.proxy_server + self.config.location_images + urlRelative; });