robert-o
12/10/2016 - 1:44 PM

Ad url to relative links Source: http://stackoverflow.com/questions/4815398/jquery-to-prepend-url-in-img-src-attribute

$('img').attr('src', function(index, src) {
     return 'http://cdn.something.com' + src;
});