• Resolved jon999

    (@jon999)


    Hello,

    Your plugin is great! I just have one problem. I send the form to a CRM, and it doesn’t accept the mask for money or phone field. I need to strip the mask before it sent since they don’t do it. Is there a way to do this? Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Ivan Petermann

    (@ivanpetermann)

    Hi @jon999

    You can try using the script below!

    
    <script>
    jQuery("form").submit(function () {
        jQuery("input.phone, input.money").unmask();
    });
    </script>
    

    Thank you for using my plugin.

    Thread Starter jon999

    (@jon999)

    Thanks for the speedy response. It worked like a charm. You are awesome!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Strip the mask before sending’ is closed to new replies.