I assume that you have formulated the question that you want to resize after the page is displayed?
In Javascript, you can manipulate the properties of the CSS DOM , for example:
document.getElementById('textboxid').style.height="200px"; document.getElementById('textboxid').style.fontSize="14pt";
If you just want to specify the height and size of the font, use CSS or style attributes, for example.
//in your CSS file or <style> tag #textboxid { height:200px; font-size:14pt; } <input id="textboxid" ...>
or
<input style="height:200px;font-size:14pt;" .....>
Paul Dixon Jul 20 '09 at 10:48 2009-07-20 10:48
source share