Is there a way I can change the size of a input text dynamically?
I have a form with the following field:
<input type="text" name="month" id="dobMonth" size = "1">
I hoped I could do something like this:
var vMonth = document.getElementById("dobMonth") vMonth.size= 8
and have the size change on the form but it does not work. The size stays the same.
Thank you in Advance
jsulman
I have a form with the following field:
<input type="text" name="month" id="dobMonth" size = "1">
I hoped I could do something like this:
var vMonth = document.getElementById("dobMonth") vMonth.size= 8
and have the size change on the form but it does not work. The size stays the same.
Thank you in Advance
jsulman