stevei
Newbie
Posts: 1
Registered: 12/27/2005
Location: Seattle
Member Is Offline
|
| posted on 12/27/2005 at 10:49 PM |
|
|
Error: s_value has no properties
This error appears on the (Firefox) JavaScript Console when using a select option in a form:
Error: s_value has no properties
Source File: tigra/validator.js line 138
Here is the fix...
Original line:
this.a_fields[n_key]['v'] = s_value.replace(/(^s+)|(s+$)/g, '')
New line:
this.a_fields[n_key]['v'] = s_value != null
? s_value.replace(/(^s+)|(s+$)/g, '')
: s_value;
|
|
|
|