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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to open a window by multip times

Status
Not open for further replies.

jimmyweb

Programmer
Dec 9, 2004
37
US
Friends,

i have a headache question, my clients want to open a pop window in multip time. Actually, if we had open a window before, there are no second window will be open for same source. how can we open multip window?
Thanks for any help
Jim

see my source codes
<a href="javascript:window.open('check_email3.html','new', '100', '100', '800', '175')"><img src=" align="top" border="0" width="65" height="15"></a><br>;
 
>>how can we open multiple window
<script>
for(i=0;i<5;i++)
open("TheHTML",i,"")
</script>

Known is handfull, Unknown is worldfull
 
Hi vbkris ,
Thanks for your help.
Problem is that window is open when users click image button. each time users click image button, system will open a new window.
how to do that?

Happy holiday for all friends.
jim
 
Example:

Code:
<img src="blah.gif" onclick="window.open('blah.html', 'w' + new Date(), '');" />

*cLFlaVA
----------------------------
[tt]insert funny quotation here.[/tt]
 
cLFlaVA,
I copy your code and does not work. even i changed some see my code.
first line code can open a popun window.but parent window display a [object] on the screen. the original GUI disappeal.
why?
seconde line does not work.and have a invild argument message. why?

*************1
<input type=button value='Submit' onClick="checkAddress(testEmail.address.value)">
<a href="javascript:window.open('check_email3.html','new', '100', '100', '800', '175')"><img src=" align="top" border="0" width="65" height="15"></a><br>;

&&&&&&&&&& 2
<img src=" onclick="javascript:window.open('check_email3.html', 'w' + new Date(), '')">
 
Code:
<a href="newwin.html" onclick="window.open(this.href, 'w'+new Date().getTime(), ''); return false;">
 <img src="mygraphic.gif" style="border: none;">
</a>

--Chessbot

There is a level of Hell reserved for probability theorists in which every monkey that types on a typewriter produces a Shakespearean sonnet.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top