This jQuery plugin allows the application of a mask for fixed width inputs. This saves the user keystrokes and helps standardize data.

learn more… | top users | synonyms

1
vote
1answer
25 views

jquery maskedinput. How to check availability of the mask

Can anyone help me with checking availability of the mask. I use this one: if ($.isFunction($("#ID").mask)){ var val = $("#ID").mask(); } else { var val = document.getElementById(ID).value; } ...
2
votes
8answers
93 views

Limit of characters in string

I have the textbox that takes some string. This string could be very long. I want to limit displayed text (for example to 10 characters) and attach 3 dots like: if text box takes value "To be, or ...
0
votes
1answer
36 views

Issues with jQuery Masked plugin

This is my field with mask: $('#Cellphone').mask("(99)9999-9999?9", { placeholder: " " }); I want to clear the mask when my input lost its focus. Is there a way to do it? Something like an option ...
1
vote
0answers
74 views

Jquery phone number masking in asp mvc4 unable to submit form…unless masking removed prior to submit?

I have tried several jquery masking inputs for phone numbers on a page I have been working on. Here they are. : http://digitalbush.com/projects/masked-input-plugin/ ...
0
votes
1answer
78 views

Masked input empties value when user doesnt fill all the mask

I have a phone input on a form. Im using masked input and i had to create a span simulating a value for when user clicks the input it removes the span, but if the user doesnt fill all the mask, on ...
2
votes
1answer
418 views

jquery masked input have only first number optional rest mandatory

Im using jquery masked input plugin and need to have a phone field with the following format: 1 (222) - 000 - 1114 my code looks like this: $("#myPhone").mask("9 (999) - 999 - 9999"); now i cant ...
0
votes
0answers
95 views

jQuery Maskedinput plugin incorrect focus

I am using jQuery 1.9.0, jQuery-ui-1.10.0, and the Maskedinput 1.3.1 plugin from Digitalbush.com. My phone number mask is as follows: $('[ID*="strSponsorContactPhone"]').mask("(999)999-9999? ...
0
votes
2answers
138 views

How to mask Datefield in Flex?

Does anyone know how to mask the input in a DateField in flex? Our DateField uses the format DD/MM/YYYY. Our users want: to be able to type the date in without having to type in the slash still be ...
1
vote
1answer
248 views

jquery Validation plugin with masked input, incorrectly validating phone number

I've been trying to figure out why the validation of a phone number has been triggering for a phone number field. I'm using both the Validator plugin as well as the masked input plugins to set up some ...
0
votes
3answers
475 views

JavaScript mask for Brasil phone number

Currently I'm using jquery.maskedinput for verious mask formats, but it's not working for phone numbers. In Brasil we used to have all numbers in the format (99)9999-9999. But lately, in a few ...
0
votes
1answer
130 views

Rails cocoon gem issue with jquery mask: new entry created every time

I am using Cocoon 1.1.1 to nest phone fields for a Person model. I wanted to have a input mask for the phone number, so I included jquery.maskedinput-1.3.min.js under the javascript folder. It seems ...
0
votes
0answers
103 views

Undefined tool tip in masked input plugin

I am using this masked input jQuery plugin. It's working well except for a condition in which I use an integer mask in the phone number text field field. It arises an undefined tooltip alert when I ...
1
vote
1answer
251 views

JQuery Masked Input Plugin doesn't accept paste

First of all, I'm using: Jquery 1.8.3 Masked Input Plugin 1.3.1 (The plugin can be found here) My goal: Mask an input field to accept only 11 numeric digits. However I want it to accept copy and ...
2
votes
1answer
141 views

MaskInput don't work after submit form in JSF

I have this maskinput definition: <ui:define name="additional-javascript"> <h:outputScript name="jquery.maskedinput-1.3.min.js" library="javascript" /> <script> ...
1
vote
1answer
277 views

jQuery's maskedinput with negative integer

How I can allow negative numbers in my mask using jQuery Masked Input plugin?
2
votes
0answers
75 views

Random population in jQuery masked field

I am using jQuery.maskedInput-1.2.2.js. A DOB field is masked as below: $('.dob').mask("??99/99/9999"); We are having an issue. Say, the user entered only last four digits 2000 and tab away. The ...
0
votes
1answer
61 views

get rid of x if no extension given for phone field in Jquery masked input plugin

Im using jquery Masked input plugin. I have the following mask on a field: "?999-999-9999 x9999" Why ? in begining? because if user entered incomplete number, i dont want the field to clear out ...
0
votes
2answers
439 views

Is there masked input plugin for knockout.js using extenders?

I've seen this post - it shows one possible solution. But I would like to have a more elegant way of doing masked input. It should also play nicely with knockout validation plugin (or maybe extending ...
0
votes
1answer
77 views

jquery roman numeral with maskedinput

Help me with masked input mask for roman numeral. I need to create a mask with which I can input only roman number from I to X
5
votes
1answer
511 views

Jquery Masked Input plugin allow dot

I'm using JQuery Masked input plugin. $("#percent").mask("99.99?9"); This allows numbers like 10.999, 10.99, 01.999, 01.99 What I want to achieve is that I don't want user to type 01.99. Instead ...
1
vote
1answer
115 views

How to use QInputMask and QDoubleValidator in PyQt4?

I created a QLineEdit lineEdit_X_Position input in PyQt4. I have created a input mask with self.ui.lineEdit_X_Position.setInputMask("00,000.00;_"). I set the lineEdit with default value ...
0
votes
0answers
67 views

Wrong result for numpy.ma.polyfit in masked arrays

I am doing polynomial fits on multiple sets of y-data, stored as columns in a masked array. Masking a single y-value in one column also seems to affect the fit-result obtained in the other (unchanged) ...
0
votes
2answers
57 views

shrink-option doesn't work for numpy masked arrays

I create a numpy masked array with the shrink-option set to False (which should yield a full-sized mask), and then I check the size of the mask: import numpy as np import numpy.ma as ma x = ...
0
votes
1answer
91 views

Numpy.ma polyfit function for masked arrays crashes on integer input

The numpy polynomial fit function for masked arrays, ma.polyfit, crashes on integer iput: import numpy.ma as ma x = ma.arange(2) y = ma.arange(2) p1 = ma.polyfit(np.float32(x), y, deg=1) p2 = ...
0
votes
0answers
143 views

Jquery mask input for currency / price / amount

Jquery mask input works great for all formats, is it supports currency / price / amount? Is there any other plugin supports all formats ?
0
votes
1answer
361 views

jQuery maskedinput and form reset

I'm using the Masked Input plugin for jQuery by Josh Bush (Masked Input) on a typical address input form on the ZipCode and Phone Number fields. When I display a record in the form and set the ...
1
vote
0answers
722 views

jquery.validate conflicts with masked input

I have a phone number which is masked using http://digitalbush.com/projects/masked-input-plugin/ and validated using http://bassistance.de/jquery-plugins/jquery-plugin-validation/. The code is ...
0
votes
1answer
1k views

Is there a good jquery plugin for masked/regex input?

My need is simple - I would like to let the user input currency values in a sane manner, meaning: Pasting an integer yields an integer, i.e. pasting 12345 gives 12345 and not 123.45 Pasting a ...
1
vote
1answer
583 views

Set value in jQuery Masked Textbox from MVC3 model

I am using jQuery Masked Input Plugin. $("#txtBoxId").mask("###-##-####"); Everything works fine if I set the complete value from model i.e. 123-45-6789. But I want to display only the last ...
0
votes
0answers
433 views

Build own $.mask.definitions for hours

I´m trying to set a mask into a input text. this is my code: $.mask.definitions['H'] = '[012]'; $.mask.definitions['N'] = '[012345]'; $.mask.definitions['n'] = '[0123456789]'; $(elem).mask("Hn:Nn"); ...
-1
votes
1answer
233 views

Remove literals from input value before validation and submit

I have a form with a required phone number field that looks like this with the maskedinput plugin (999) 999-9999 I want the jquery validation to ignore the literals in order to validate this. Also, ...
0
votes
1answer
910 views

How to use .unmask() function on MaskedInput jQuery app?

I try to use .unmask() function after .blur() (jQuery), but it did not worked. Please help, this is my code: $('.cnpj').focus(function() { $(this).mask('99999999/9999-99'); }) .blur(function(e) ...
2
votes
2answers
2k views

jQuery masked input plugin conflicts with jQuery Tools (at least with overlay)

I found that jQuery masked input plugin (http://digitalbush.com/projects/masked-input-plugin/) conflicts with jQuery Tools overlay methods load() and close(). So, when you import jQuery Tools first ...
1
vote
0answers
296 views

jQuery maskedinput character not required

I am using the inputMask-tag of primefaces which adds the maskedinput-plugin of jQuery to my application. I have a input field with this mask: ***-999 The user should be able to leave some ...
0
votes
2answers
739 views

RadioButton with Javascript (MVC3)

I'm working with C# and MVC3 I have a RadioButton, and depending on the option selected I need to change the mask of a textbox. I'm using Masked Input Plugin for jQuery. How can I do this? I have to ...
0
votes
1answer
400 views

How to pre-populate 9 with jQuery Masked Input Plugin?

I am using Masked Input Plugin from digitalBush for jQuery, which is very simple to use. For some cases, I want to pre-populate data for the client, so for something like this : .mask("123999") ...
1
vote
2answers
171 views

How to mask input on Blackberry browser

I am using a jQuery Masked Input plugin to force the user to type the phone number in proper format. $(document).ready(function () { $("#PhoneNumber").mask("(999)999-9999"); }); The ...
1
vote
1answer
504 views

jQuery Masked Input (digitalBush) doesn't work with Chrome 19 input type=“number”

I am trying to use jQuery Masked Input (from digitalBush) without success. My HTML code is: <input class="numeric float optional" id="ocorrencia_altura" min="0" name="ocorrencia[altura]" ...
0
votes
2answers
833 views

How to use the “Masked Input” module in Drupal 7

I am trying to build a form in Drupal 7, one of the fields needs to have an input mask. I found the plugin masked input it seems like what I am searching for . Only there is no documentation on how ...
1
vote
1answer
3k views

jQuery masked input plugin conflicts with validation plugin

Given a text box that is masked using the Masked Input plugin, and is marked as a required field by the Validation Plugin, consider the following: If you put your focus in a text box that is masked, ...
0
votes
1answer
318 views

Order of events for dynamically added elements and Masked-Input plugin

So the non-ajax version of my webapp is fine, cause the events are added in the order I want and all the events are added on the cell-phone element in question. But for my ajax app, the events are ...
3
votes
4answers
3k views

jquery masked input plugin to not clear field when errored

I'm looking at the http://digitalbush.com/projects/masked-input-plugin/ I'm calling it like this: $(control).mask('999-999-9999'); And I don't want it to throw away the users input if something ...
2
votes
1answer
296 views

jquery maskedinput removing incomplete text on blue

There is this other StackOverflow post at here that is the EXACT issue I am having. But there was only one answer and it wasn't that helpful. So I'm reposting in the hope that someone will have ...
0
votes
2answers
952 views

How can I put masked date input in a dynamically created text field?

I am using jquery date input plugin from here I call the function inside the html page like this jQuery(function($){ $("#date").mask("99/99/9999"); }); It works fine in every fields where we ...
0
votes
2answers
764 views

Specify date format in mask when using an input mask?

I've been using the jquery masked input plugin to apply a date mask to text inputs. This works pretty well, but I want the displayed mask to also show the format. That is, instead of the mask being ...
3
votes
2answers
1k views

jquery masked input on loaded content

So I have a joomla! page that is partly generated by functions based on the user. So parts of the forms that I need to use the 'masked input plug-in' on are loaded via functions on page load. The ...
2
votes
3answers
1k views

Remove literals from input mask after form submit?

this question has already been asked but the solutions where not clear. Im using Josh Bush's MaskedInput plugin for jQuery What im trying to achieve is: E.g: a phone input with the mask ...
1
vote
2answers
8k views

Masked input for currency jQuery

In my web application I have an input field called "Budget" where users enter the proposed budget for a project. I need to create a masked input to automatically bring the entered amount to the ...
0
votes
0answers
209 views

Strange behaviour in jQuery maskedinput

I am masking form input elements like this for (var i=0;i<dla.length;i++){ $(dla[i]).mask("99:99",{placeholder: " "}); } and i generate html <td scope="col" ...
2
votes
1answer
519 views

Input mask visibility

I'm currently using the masked input plugin from http://digitalbush.com/projects/masked-input-plugin/ on my form. So far it seems to work but I want to modify it so that the mask is displayed at all ...

1 2