I'm setting up a form that has an input mask for the Phone Number field. The mask works on Windows OS and Android, however does not work on iOS. Is there a trick to get the mask to work on iOS?
$(document).ready(function () { $.getScript('http://localhost/Forms/js/jquery.mask.min.js', function () { $(".phone input").mask("(999) 999-9999"); });