I'm having a little problem with changing the value of a textbot
. The problem is that there is no id
assigned to the textbox
, so getElementById
does not work, neither does getElementsByName
.
<input type="text" class="textbox" name="custom_reason" size="50" maxlength="120" value="">
How would I change it's value?
Thank you.