I'm using the jQuery plugin AutoNumeric but when I submit a form, I can't remove the formatting on the fields before POST
.
I tried to use $('input').autonumeric('destroy')
(and other methods) but it leaves the formatting on the text fields.
How can I POST
the unformatted data to the server? How can I remove the formatting? Is there an attribute for it in the initial config, or somewhere else?
I don't want to send the serialized form data to the server (with AJAX). I want to submit the form with the unformatted data like a normal HTML action.
There is another solution for integration which doesn't interfere with your client-side validation nor causes the flash of unformatted text before submission:
You can always use php
str_replace
functionit will remove all commas. you can cast the value to integer if necessary.
classname is your input class that will init as autoNumeric Sorry for bad English ^_^