Is it possible to...

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
lagnou
Forum Newbie
Posts: 1
Joined: Mon Mar 15, 2004 4:46 pm

Is it possible to...

Post by lagnou »

Hi i was wondering if it was possible to open 2 browsers with the same link if it is can someone telll me how please
d3ad1ysp0rk
Forum Donator
Posts: 1661
Joined: Mon Oct 20, 2003 8:31 pm
Location: Maine, USA

Post by d3ad1ysp0rk »

Code: Select all

<script language="javascript">
function openwindows()&#123;
window.open("http://google.com/");
window.open("http://yahoo.com/");
&#125;
</script>
<a href="#" onclick="openwindows()">Windows</a>
Post Reply