Open links in another window with javascript

MuttotToinc

New Member
Let's say I have a single HTML page and it contains hundreds of links. These links will load in the same window when anybody clicks them.I want it to open in another window. I know that I can use \[code\]target\[/code\] for each link:\[code\]<a href="http://www.example1.com/" target="_blank">My Text1</a><a href="http://www.example2.com/" target="_blank">My Text2</a><a href="http://www.example3.com/" target="_blank">My Text3</a>\[/code\]Howeder, I'd prefer to use JavaScript if that's possible. Is it possible to do that with JavaScript, and if so, how?
 
Back
Top