source: resources/assets/js/examples/input-mask.js@ 582789f

develop
Last change on this file since 582789f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 355 bytes
Line 
1'use strict';
2$(document).ready(function () {
3
4 $('[data-input-mask="phone"]').mask('(000) 000-0000');
5
6 $('[data-input-mask="money"]').mask('#.##0,00', {reverse: true});
7
8 $('[data-input-mask="date"]').mask('0000/00/00');
9
10 $('[data-input-mask="time"]').mask('00:00:00');
11
12 $('[data-input-mask="ip_address"]').mask('099.099.099.099');
13
14});
Note: See TracBrowser for help on using the repository browser.