Page 1 of 1

Is it possible to...

Posted: Mon Mar 15, 2004 4:46 pm
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

Posted: Mon Mar 15, 2004 5:06 pm
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>