Is it possible to...
Posted: Mon Mar 15, 2004 4:46 pm
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
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
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>