I am trying use this jQuery mask input plugin that will force users to enter alphanumeric values, a period and a space.
I am trying to allow alphanumeric(10 bytes) with the statement below.
$('#CommentsTextBox').setMask({ mask: '****' });
However, it does not allow any user input. I am applying inputmasks to other controls on my page just fine.
If I comment out this statement then I can enter values.
Here is the the code for the control in the .aspx
<asp:PlaceHolder ID="CommentsPlaceHolder" runat="server">
<asp:TextBox ID="CommentsTextBox" CssClass="longTextBox" runat="server" MaxLength="150" TextMode="MultiLine" Rows="4" ClientIDMode="Static" />
</asp:PlaceHolder>