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

IE6 and popup windows

Status
Not open for further replies.

Kretzer

Technical User
Nov 6, 2002
37
0
0
NL
Hi,

are there any known issues concerning IE6 and popupwindows?
The thing is that my onclick event will be processed in a non popup window but won't be processed in a popup window..

The code example:
1) the click event

<form action="">
<input name="Update" type="button" id="Update" onClick="self.update()" value="Updaten">
</form>

2) the called function
<script type="text/javascript">
function update() {
F = open("//bkusva11012/gruppen0803/VertriebsCD/Updates/Anwendungen/update_preissystem.bat","Popup","width=300,height=250",target="_blank");
G = close(self.close)
}</script>

thank you in advance for your help
Martin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top