[thelist] Form which submits to a blank sized window

Kasimir K evolt at kasimir-k.fi
Tue Mar 22 07:06:38 CST 2005


Matthew French scribeva in 2005-03-22 12:05:
> I want to create a form which will submit data to a new blank window.
> The new blank window must open to a specific size with no navigation
> bar.

First open new window to your liking, give it a name and set that as 
value of target attribute of form element.

window.open('myUri', 'myPopUp', 'height=100,width=100');
...
<form target="myPopUp" ...

.k


More information about the thelist mailing list