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

Pop Window Does Not Open

Status
Not open for further replies.

cocopud

Technical User
Joined
Jan 8, 2002
Messages
139
Location
US
I had a website running on Windows NT and IIS 4.0 (I think) that worked fine. We have recently upgraded to Windows 2003 with IIS 6.0. We have a What's New page that should popup when clicked, but it is not working. Since I'm not a programmer, I'm not sure what to look at. Could it be the code, or maybe something needs to be set with IIS. The code for the popup box is:
<a href ="javascript:void(0);" onclick="window.open )WhatsNew.htm', '', 'width=450,height=300,scrollbars=yes,resizable=yes');">What's New</a> <br><br>
 
if this is actually your real code, no wonder it doesn't work. replace that with this:

Code:
<a href="#" onclick="window.open('WhatsNew.htm', '', 'width=450,height=300,scrollbars=yes,resizable=yes'); return false;">What's New</a>
<br /><br />



*cLFlaVA
----------------------------
[tt]( <P> <B>)13 * (<P> <.</B>)[/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top