want my form submission to open a new window
-
I have a form (in plain HTML) that opens up a new window when I submit the form
The problem is that I want the popup window to be chromeless. I have a javascript function "OpenChromeless(url);" that opens up a chromeless window that takes the URL of the web page that you want to open in chromeless. The problem is how can I combine the two to get open the submitted form in a chromeless window.
-
I have a form (in plain HTML) that opens up a new window when I submit the form
The problem is that I want the popup window to be chromeless. I have a javascript function "OpenChromeless(url);" that opens up a chromeless window that takes the URL of the web page that you want to open in chromeless. The problem is how can I combine the two to get open the submitted form in a chromeless window.
Change your OpenChromeless function to take the window name as a parameter as well and be sure it returns true so the form submit is not cancelled. Then you can use something like: <form action='foo.aspx' method='get' onsubmit='OpenChromeless("about:blank", "MyFormResults")' target='MyFormResults'> -Blake