SitePoint Sponsor |
|
User Tag List
Results 1 to 2 of 2
Hybrid View
-
Aug 21, 2007, 02:44 #1
Open Form Target in Fixed Size New Window
Hi!
I have a form...
Code:<form action="mailing.php" method="post" target="_blank"> ... </form>
Thanks!
-
Aug 21, 2007, 09:46 #2
- Join Date
- Oct 2004
- Location
- Birtley, UK
- Posts
- 2,439
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
in mailing.php you can set the window size onload.
Code:window.onload = function() { self.resizeTo(400,300); }
Bookmarks