Maybe you could check the Gravity Forms documentation first:
gform input masks
Well, in that case you might want to share what you have tried and what EXACTLY didn't work, because that documentation is quite clear IMO.Wow, If only it were that simple.
Yes I have checked and read many of many documents and internet posts and nothing has worked.
I can help you, but need website cpanel access
It's indeed in the description of how to use the jQuery MaskedInput plug-in that Gravity Forms uses, so it's very strange that they didn't suggest that as a solution.I have finally developed a solution for input masking any form or input not just gravity forms.
Here is the solution if anyone is interested:
Code:jQuery(document).ready(function(){ jQuery('#FORM_ID_GOES_HERE').mask('a9a - 9a9'); });
It's indeed in the description of how to use the jQuery MaskedInput plug-in that Gravity Forms uses, so it's very strange that they didn't suggest that as a solution.
As '.mask' is not part of core jQuery, it doesn't work for any form, you'll need a jQuery mask plug-in present or linked, such as the one above or the more recently updated jQuery Mask Plugin.