I am following the steps from
http://www.laserfiche.com/support/webhelp/laserficheforms/9.1/en-us/forms/Content/FieldMasks.htm
And I cannot get the number to mask. I have the path of the script on a server and just used that path.
Code:
$(document).ready(function () {
$('.phone').on('change' , 'input' , mask_num);
function mask_num {
$.getScript('\\serverName\folder\folder\folder\jquery.mask.mi n.js', function () {
$(".phone input").mask("(999)999-9999");
}
});
});
Setup:
$(document).ready(function () {
$('.phone').on('change' , 'input' , mask_num);
function mask_num {
$.getScript('\\serverName\folder\folder\folder\jquery.mask.mi n.js', function () {
$(".phone input").mask("(999)999-9999");
}
});
});
Thanks!