I'm loading a HTML fragment into a page using a jQuery AJAX call. The fragment is loaded from a separate directory on the server and I want to be able to reuse it (with its links to scripts and images) in different locations.

Is there a safe way using JavaScript/jQuery to translate all relative URL:s in a page - relative to where the HTML fragment was loaded from - before inserting it into the DOM?

link|improve this question

68% accept rate
feedback

1 Answer

up vote 1 down vote accepted

If you wanted to modify the href attribute of every link, you could do...

$('a').attr('href', function(index, href) {
    return window.location.pathname + '/' + href;
});
link|improve this answer
I was hoping someone had created a plugin to do this in a safe manner, checking that URL:s are relative, updating all known URL-related attributes and so on. Guess I'll have to roll my own. – Freed Jul 5 '11 at 9:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.