Questions tagged [meiomask]

jQuery MeioMask - a jQuery plugin for masking text inputs

6 questions
1
vote
1 answer

Cursor always moves at last position

I am using this meiomask for entering time in my website: Here is my code: HTML Markup: jQuery: $('#timepick').setMask(); Problem: Every time I enter time and trying to move cursor left or right, it…
Dhaval Marthak
  • 17,246
  • 6
  • 46
  • 68
0
votes
1 answer

new regex rule for meio mask

I'm using meio mask (old site) I want to be able to mask an input so it allows me to enter a percentage value between 0 and 100, integers only. I've tried this: $.mask.rules = $.extend($.mask.rules, { '%': /0|[1-9][0-9]?|100/, }); $.mask.masks…
Matías Cánepa
  • 5,770
  • 4
  • 57
  • 97
0
votes
0 answers

JavaScript mask to Code Area only

I'm trying to set a mask to code area, but the right parentheses never appears. $("#dddResponsavel").setMask({ mask : '(99)', autoTab : false }); It should be like (31) or (15), but when I run the project,…
0
votes
1 answer

Applying mask for an input field for date in jquery

I am using jquery.meio.mask to format a date in a textbox which is having datepicker attached to it. Everything is working fine except that when the user manually enters a date after he enters the 3rd digit (after the first /) the cursor is coming…
0
votes
2 answers

'jQuery' is undefined, using meiomask

-- 7/1/2014 -- I have a VS Web Site I'm working on in VS 2012. I get this same error whether I bring up the site using IE or using F5 in VS: "'jQuery' is undefined". Here is the code the debugger highlights from SearchPosition.aspx, indicating the…
Chris
  • 9
  • 1
  • 4
0
votes
1 answer

Meiomask - unable to apply setMask to controls in ASP

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,…
KentE
  • 77
  • 11