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\         
        
Inside data callback you must call getString method like below:
        $("#form").autosave({
        callbacks: {
            data: function (options, $inputs, formData) {
                return $("#form").autoNumeric("getString");
            },
            trigger: {
                method: "interval",
                options: {
                    interval: 300000
                }
            },
            save: {
                method: "ajax",
                options: {
                    type: "POST",
                    url: '/Action',
                    success: function (data) {
                    }
                }
            }
        }
    });