Hi,
I have this javascript code that pops up a new window when pressed. How do I name this window "Login". Here is the code:
<form method="post" action="http://www.mysite/cgi/login.cgi" target="popupWin" onSubmit="javascript:
var w = 140;
var h = 147;
var winFeatures = 'width='+w+',height='+h+',location=yes,scrollable,left=350,top=220,resizable=yes';
var winPtr = window.open('', this.target, winFeatures);
return true;">
Thanks
I have this javascript code that pops up a new window when pressed. How do I name this window "Login". Here is the code:
<form method="post" action="http://www.mysite/cgi/login.cgi" target="popupWin" onSubmit="javascript:
var w = 140;
var h = 147;
var winFeatures = 'width='+w+',height='+h+',location=yes,scrollable,left=350,top=220,resizable=yes';
var winPtr = window.open('', this.target, winFeatures);
return true;">
Thanks
Comment