Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
HTML
Javascript problem with form submission on Seamonkey
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Daniel Rudy, post: 3517479"] Consider the following code: <?php if (isset($_POST['width']) && isset($_POST['height'])) { // output the geometry variables print "Window width is: ". $_POST['width'] ."<br>\n"; print "Window height is: ". $_POST['height'] ."<br>\n"; } else { print <<<HTMLBLOCK <form name="screensize" method="POST" action="$_SERVER[PHP_SELF]"> <input type="hidden" name="width" value=""> <input type="hidden" name="height" value=""> </form> <script language="javascript"> var myform = document.screensize; myform.width.value = screen.width; myform.height.value = screen.height; myform.submit(); </script> HTMLBLOCK; } ?> This code renders as the following in a web browser: <form name="screensize" method="POST" action="/test/test.php"> <input type="hidden" name="width" value=""> <input type="hidden" name="height" value=""> </form> <script language="javascript"> var myform = document.screensize; myform.width.value = screen.width; <-- Line 8 myform.height.value = screen.height; myform.submit(); </script> Here's the problem. In IE7, this works just fine. But in Seamonkey 1.1.8, it fails (blank page). The error console gives the following error: myform has ho properties (line 8). I haven't tried it in other browsers. I have exhausted my reference documentation, and I couldn't find an answer on Google either. Everything I found says this should work, but it's not. Any ideas? [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
HTML
Javascript problem with form submission on Seamonkey
Top