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!

browser compatability issue (i.e. 6 +)

Status
Not open for further replies.

mindeye

Technical User
Mar 12, 2002
40
0
0
US
the following piece of code is giving me an error:

win=window.open(url,'playerwin','toolbar=no,location=no,personalbar=no,status=no,menubar=no,resizable=yes,scrollbars=no,titlebar=no,width=500,height=400,left=0,top=0');

The code works in netscape 6 and IE versions previous to 6.

Any suggestions?

Mindeye
 
Hi Mindeye,
I tried your code like below on IE 6.0 and it worked fine

<html>

<head>
<title>try</title>
<script>

function tryMe()
{
win=window.open('
}

</script>
</head>

<form name=&quot;try&quot; method=&quot;post&quot;>
<input type=&quot;button&quot; value=&quot;Try&quot; onClick=&quot;tryMe();&quot;>
</form>

</html>

I hope you are passing the valid url but please verify it.
hope it helps [bigcheeks] Experience teaches slowly and at the cost of mistakes [pipe]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top