Is it possible to...
Moderator: General Moderators
Is it possible to...
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
Code: Select all
<script language="javascript">
function openwindows(){
window.open("http://google.com/");
window.open("http://yahoo.com/");
}
</script>
<a href="#" onclick="openwindows()">Windows</a>