Re: Change href of external links
Thanks guys, excellent solutions and points. I've gone with Dave's solution, as it allows some tag flexibility without adding much code.
One question: is it not possible to combine .not arguments? Tried playing with the quotes, but it only seems to work if they are separated.
.not("[@href*='internal.com/']")
.not("[@class*='thickbox']")
vs
.not("[@href*='internal.com/']" || "[@class*='thickbox']") // or some variation
Adam