Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help for a simple script

Status
Not open for further replies.

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>
 
I cannot understand what it is you are asking for help with, but your code seems very similar to that in another recent post, so perhaps a link to that post might help you?

thread216-1626399

If the other post doesn't help, perhaps you can rephrase your question so that it makes sense?

Hope this helps,

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Snippets & Info:
The Out Atheism Campaign
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top