M
MC
I have a page that has a submit link in it for a popup. The page does the
popup fine but the parent window redraws all of the input fields at
half-height. No matter what I do, the input fields are scrunched after the
popup window opens.
The popup code looks like:
var mywin =
window.open("proposal.jsp","Proposal","HEIGHT=600,WIDTH=800,toolbar=yes,statusbar=no,menubar=no,scrollbars=yes,resizable=yes");
mywin.focus();
and the input:
<input type='text' name='fname' style="width:80px;height:14px;" ...
Adding the following .js
document.quickquote.fname.style.height="14px";
at the bottom of the page does not change the scrunched
fields...completely ignores the javascript.
Any ideas?
WindowsXP Pro, IE 7.0
MC
popup fine but the parent window redraws all of the input fields at
half-height. No matter what I do, the input fields are scrunched after the
popup window opens.
The popup code looks like:
var mywin =
window.open("proposal.jsp","Proposal","HEIGHT=600,WIDTH=800,toolbar=yes,statusbar=no,menubar=no,scrollbars=yes,resizable=yes");
mywin.focus();
and the input:
<input type='text' name='fname' style="width:80px;height:14px;" ...
Adding the following .js
document.quickquote.fname.style.height="14px";
at the bottom of the page does not change the scrunched
fields...completely ignores the javascript.
Any ideas?
WindowsXP Pro, IE 7.0
MC