Forum Moderators: open
<td>(<input class="phonetext" maxlength="3" name="phoneareacode" size="3" type="text" value="">)
<input class="phonetext" maxlength="3" name="phoneexchange" size="3" type="text" value="">-
<input class="phonetext" maxlength="4" name="phonenumber" size="4" type="text" value=""></td>
I would like to combine all three of these values into one hidden field like this:
<input type="hidden" id="phone" name="phone" value="?">
With the? being the three values merged together...
Thanks!
document.getElementById("phone").value = s;
the value should be escaped tho