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!

Javascript & Navigator 4.75

Status
Not open for further replies.

gt196

Programmer
May 26, 2000
3
GB
Is it just me, or does Netscape Navigator not respond to hieight and width commands when opening a popup window. I can't believe this is right.
Here's the code I've been using :

<script>
function openWin(page) {
var newWin = window.open(page, &quot;recipes&quot;, &quot;scrollbars=1, width=540, height=300&quot;)
newWin.moveTo(0, 0);
}
</script>

Then, I've called it here :
<p><a href=&quot;javascript:eek:penWin('offers_surfer.html')&quot;>Surfer Offers</a></p>

IE is quite happy with this, but navigator refuses to recognize height and width.
Any Ideas,
Gord. [sig]<p>Gordon Thomas<br><a href=mailto:gordon@iwebagency.com>gordon@iwebagency.com</a><br><a href= [/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top