A
Andrew Poulos
If I call this:
myWin = window.open("test.htm", "", "");
I get a new separate window in Firefox but if I try it from a form
<form action='test.htm' method='post' target='myWin'
onsubmit="window.open('',this.target,'');return true;">
I get a new tab. How can I get a new separate window from a form?
Andrew Poulos
myWin = window.open("test.htm", "", "");
I get a new separate window in Firefox but if I try it from a form
<form action='test.htm' method='post' target='myWin'
onsubmit="window.open('',this.target,'');return true;">
I get a new tab. How can I get a new separate window from a form?
Andrew Poulos