I\'m using the jQuery plugin AutoNumeric but when I submit a form, I can\'t remove the formatting on the fields before POST.
POST
I tried to use $(\'input\
$(\'input\
You can always use php str_replace function
str_replace
str_repalce(',','',$stringYouWantToFix);
it will remove all commas. you can cast the value to integer if necessary.