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\
I came up with this, seems like the cleanest way. I know it's a pretty old thread but it's the first Google match, so i'll leave it here for future
$('form').on('submit', function(){ $('.curr').each(function(){ $(this).autoNumeric('update', {aSign: '', aDec: '.', aSep: ''});; }); });