I'd like to be able to add data to the field input line so that this:
<input name='input_95' id='input_2_95' type='text' value='' class='small' tabindex='37' />
becomes this:
<input name='input_95' id='input_2_95' type='text' value='' class='small' tabindex='37' onChange="CalculateTotal(this.form)" />
but only on specific fields.
The idea is populate a field using javascript:
http://www.mcfedries.com/javascript/ordertotals.asp
Any Ideas?
BTW, if anyone is curious, I was able to get After the Deadline spell checker (jquery) to work with multiple textareas.. one click checks the entire form's input and allows the writer to modify before saving the form.