How can I calculate numbers inside a input(textbox) using jquery? Currently I achieve this this by using eval.
onChange="MyForm.inputID.value = eval(MyForm.inputID.value)
Ex: 2+4 onChange results 6
How can I achieve this using jquery on all the inputs without using IDs.
Thank you!