This is what I have right now:
$("#number").val(parseFloat($("#number").val()).toFixed(2));
It looks messy to me. I don't think I'm chaining the functions correctly. Do I have to call it for each textbox, or can I create a separate function?
|
|
This is what I have right now:
It looks messy to me. I don't think I'm chaining the functions correctly. Do I have to call it for each textbox, or can I create a separate function?
|
|||
|
|
|
|
If you're doing this to several fields, or doing it quite often, then perhaps a plugin is the answer.
|
|||
|
|
|
|
Maybe something like this, where you could select more than one element if you'd like?
|
||
|