maskedinput

jQuery plugin for formatting inputs

I want to accept values in any of the following format: -$5 -$5.00 $5 $5.00 Is it possible to do that using Masked Input Plugin? If not, what plug-in am I looking for? How do I indicate a character is optional? The code I've got so far $.mask.definitions['~']='[ +-]'; $(".currency").mask("~$9"); ...

AjaxControlToolkit MaskedEditExtender - custom mask appearance

I'm using a MaskedEditExtender to show users what format they should use to enter a date into a textbox. How do I change the mask to be dd/MM/yyyy instead of __/__/____? ...

jQuery ValidationEngine and MaskedInput

Is anyone using both of these plugins? We're using ValidationEngine to do inline-validating on blur. Works great. We're using MaskedInput to mask fields. Works great. However, any field that is set to use both only handles the MaskedInput. The MaskedInput seems to interfere or override the ValidationEngine event. Anyone run into th...

How to remove literals from input mask after form submit?

I'm using Josh Bush's MaskedInput plugin for jQuery in an ASP.NET 3.5 Webform app. How to get rid from the literals in the code-behind file after form submit? E.g: a phone input with the mask $("#txtPhone").mask("(99)9999-9999"); In the code-behind: string customerPhone = txtPhone.Text Which returns me: (12)3456-7890 But this is w...

jQuery masked input plugin not working on smartphone

Hi, I have been using the masked input plugin for jQuery for a long time. http://digitalbush.com/projects/masked-input-plugin/ I never had any issues with the plugin until yesterday I got a support ticket regarding the plugin behaving erratically on the Driod phone. e.g. When the user tries to enter the phone number (123)345-9646 in ...