sadeghol
Technical User
- Nov 22, 2010
- 1
hi,i make a java button and when clicked that multiple windows opened(in opera)i'll this button automatically work after for i.e 2s.i'll just click or enter on that because otherwise opened popup window if have other way to open normal scheduler window there isn't any problem.
Code:
<html>
<head>
<script type="text/javascript">
function open_win() {
for (i=0; i < 3;i++)
{
Win = window.open('[URL unfurl="true"]http://google.com',[/URL] 'win'+i, 'width=1500,height=1500')
}
}
-->
</script>
</head>
<body>
<form>
<input type=button value="SEND MASSAGE" onclick="open_win()">
</form>
</body>
</html>