🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Timetator is a small yet useful jQuery plugin which automatically transforms numeric values (e.g. 932) into time strings (e.g. 09:32) with a custom separator.

time-Format

Documentation

Timetator

Timetator is a jQuery-based addon for input boxes, giving them a time sanitizer. You can see a demo here.

Usage

include in head:
<script src="jquery-1.11.0.min.js"></script> <script src="fm.timetator.jquery.js"></script>
to activate replacement:
$('#inputBox').timetator();

If you don't wan't to meddle with scripting, there is an alternative to activate replacement, by using inline markup.

<input type="text" class="timetator" data-timetator-use-cap="false">
if you want to change settings:
$('#inputBox').timetator({     seperator: ':',        // the seperator used to seperate hours, minutes and seconds     useSeconds: false,     // if set to true, then seconds will also be used     useCap:	true		   // if set to true, the time value will be capped at 23:59 });

jQuery methods

Method Description
destroy This method is used to remove the instance of the plugin from the input box.
Method usage
$('#inputBox').timetator('destroy');

Browser compatibility

  • IE 8+
  • Chrome 3+
  • Firefox 3.6+
  • Safari 5+
  • Opera 10.5+

Copyright and license

The MIT License (MIT)

Copyright (c) 2014 Qodio

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


You May Also Like