ewel
Junior Member
Posts: 3
Registered: 1/29/2006
Member Is Offline
|
| posted on 1/29/2006 at 08:32 AM |
|
|
multiple line fields
Has anyone managed to make the script accept select boxes or other fields of multiple lines?
As soon as I increase the size of a select box or the rows of a textarea to more than 1, the script stops functioning.
My guess is that the issue is in the following lines, but that is just a guess:
else if (o_input.value) // text, password, hidden
s_value = o_input.value;
else if (o_input.options) // select
s_value = o_input.selectedIndex > -1
? o_input.options[o_input.selectedIndex].value
: null;
|
|
|
|