Wednesday, September 3, 2008

Open multible new windows using Js

<html>
<head>
<script type="text/javascript">
function open_win() {
    window.open("http://www.java2s.com/")
    window.open("http://www.java2s.com/")
    window.open("http://www.java2s.com/")
    window.open("http://www.java2s.com/")
}
</script>
</head>

<body>
<form>
<input type=button value="Open Windows" onclick="open_win()">
</form>
</body>

</html>

1 comment:

Anonymous said...

I try to resize on of the links, without success.
I searched google and do exactly whats mentioned on several sites but when i change height and width the whole code doesnt work anymore.

Post a Comment