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.
jQuery MeioMask - a jquery plugin for masking text inputs.
See http://cdnjs.com/libraries/jquery.meiomask.
- 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>
See meiomask-rails gem.
The only dependency is jQuery itself.
<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>