Oceanic7777
Technical User
Here goes...
I have a link on a page (.shtml) to a form that I have created. (The form and confirmation page are both html pages since the front page form utility doesn't seem to work with .shtml)
I have it set up so that when the link is clicked upon, a new window will open.
Here is an example of the html code that I am using for this link.
<a href="formname.html" onclick="NewWindow(this.href, 'name','550','585','no');return false;" onMouseOver=" window.status='Contact Us '; return true" onMouseOut="window.status=' '; return true">
As you can see I also have coding to display a message on mouse over in the status bar.
But the form (which is inside of a fluid table) contains a comment box.. When the form is submitted, the user is sent to a custom confirmation page (in the same window as the form) that displays the input that they entered in the form (including comments). But if the comments are too long, the table will run off the bounds of the page and you can only see as far as the bounds specified in the linking code.
Is there a way to make the window automatically resize according to the size of the table (in the confirmation page)?
I have a link on a page (.shtml) to a form that I have created. (The form and confirmation page are both html pages since the front page form utility doesn't seem to work with .shtml)
I have it set up so that when the link is clicked upon, a new window will open.
Here is an example of the html code that I am using for this link.
<a href="formname.html" onclick="NewWindow(this.href, 'name','550','585','no');return false;" onMouseOver=" window.status='Contact Us '; return true" onMouseOut="window.status=' '; return true">
As you can see I also have coding to display a message on mouse over in the status bar.
But the form (which is inside of a fluid table) contains a comment box.. When the form is submitted, the user is sent to a custom confirmation page (in the same window as the form) that displays the input that they entered in the form (including comments). But if the comments are too long, the table will run off the bounds of the page and you can only see as far as the bounds specified in the linking code.
Is there a way to make the window automatically resize according to the size of the table (in the confirmation page)?