I have a bunch of links and want to make them all open in new windows.
I know I can do a search and replace all to add ta
ta
Just add a html base element to the page using Javascript:
base
var e = document.createElement("base"); e.target = "_blank"; document.head.appendChild(e);