We've just added the jquery.mask.min.js plugin to our server that we acquired here and are having some issues getting it work properly. The individual from our IT department who installed the plugin on the server is able to get it to work without issue, but for anyone else that tries, the masking doesn't occur. We are using it to mask phone numbers and SSNs with the following code:
$(document).ready(function () { /*SSN Mask*/ $.getScript('http://ServerName/Forms/js/jquery.mask.min.js', function () { $(".ssn input").mask("999-99-9999"); }); /*Phone Number Mask*/ $.getScript('http://ServerName/Forms/js/jquery.mask.min.js', function () { $(".phone input").mask("(999)999-9999"); }); });
Where "ServerName" is the name of the server that LF Forms is installed on.
We also noticed that it's only working for that one individual when they're logged in as themselves on Laserfiche Forms. Opening the form in incognito mode via Chrome, it no longer works.
Any suggestions as to what might be causing this and/or how we can get it working properly?