0.16
No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
jquery.meiomask for rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

Warning: Unmaintained project

If you are interested on maintaining the project feel encouraged to message me so I can give you some instructions and most importantly, admin access.

Build Status Code Climate

jQuery MeioMask

jQuery MeioMask - a jquery plugin for masking text inputs.

Maintainer

http://github.com/johnvoloski

CDN

See http://cdnjs.com/libraries/jquery.meiomask.

Install via Bower

  • Latest version: $ bower install jquery-meiomask
  • Install specific version: $ bower install jquery-meiomask#~1.1.14
  • Or put in bower.json:
    "jquery-meiomask": "~1.1.14"
    $ bower install
  • Include script within HTML: <script src="bower_components/jquery-meiomask/dist/meiomask.js" type="text/javascript"></script>
    or
    <script src="bower_components/jquery-meiomask/dist/meiomask.min.js" type="text/javascript"></script>

Install via Rails

See meiomask-rails gem.

Dependencies

The only dependency is jQuery itself.

How to use

<html>
  <head>
    <script src="jquery-1.10.2.js"></script>
    <script src="meiomask.min.js"></script>
  </head>

  <body>
    <form>
      <label for="time">Time Mask:</label>
      <input type="text" id="time" name="time" data-mask="time" />
    </form>

    <script>
      $('input[data-mask]').each(function() {
        var input = $(this);
        input.setMask(input.data('mask'));
      });
    </script>
  </body>
</html>