Formatting a Order Form Fields with .mask Follow
EzMerge has the ability to for certain formatting for phone numbers or other specific aspects that need to keep branding standards.
Sometimes you may run into the need to collect similarly formatted information in an OrderForm, for instance, an Account number.
Use the Code below to format those fields in a specific way.
<script type="text/javascript">
$(function() {
$('#udf_REPLACEME').mask('99-999-99-999999-99999');
});
</script>