jquery-megamask

0.3.3 • Public • Published

jquery-megamask

Create input masks.

Plugin that creates masks for your inputs.

Getting started

Install with npm;

Or get the source from src folder.

** bower, and jquery packages will come somewhen **

Overview

// initialize plugin
$("#my_input").megamask('xxx.999-99-*');
 
// some time ago
// when we need to get a raw (without mask symbols) value of input
$("#my_input").megamask("getRaw");
 
// another way
// when we get a default value some time ago
// (by default masks do this on initialization)
$("#my_input").val("abc123123").megamask("refresh");

Options

The signature of plugin calling is:

$element.megamask(String mask, Object [options])

Where mask is a string, representing the mask. Currently available symbols:

Symbol Definition
9 Any number value
x Any character (a-z)
* Any value

Package Sidebar

Install

npm i jquery-megamask

Weekly Downloads

6

Version

0.3.3

License

MIT

Last publish

Collaborators

  • gobwas