-
Notifications
You must be signed in to change notification settings - Fork 0
kensenjohn/Jquery-TimePicker
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This plugin allows you to select time.
Gives options to select hrs, mins, secs and AM/PM
Users can use 12Hr or 24 Hr formats.
All times are in a drop down. Click on the text box, the plugin will become visible and you can select the time fro the drop down.
see test_timemachine.html for an example.
The options are
format: 'AMPM', // Specify '24' for 24 hr format
showHrs: true, //Specify whether Hr has to be shown
showMins: true, // specify whether Min has to be shown
showSecs: true, // specify whether Sec has to be shown
min_increment: 15, // increment of the minutes be shown
sec_increment: 1, // increment of the secs be showns
hr_increment: 1 // increment of the Hr be shown.
Simple example:
<input type="text" id="timemachine_24" name="timemachine_24" value="06:15:20"/>
<script>
$(document).ready(function()
{
$("#timemachine_24").timemachine({format:"24"}); //add other options as required.
});
</script>
Originally uploaded here
http://code.google.com/p/timepick-timemachine/About
a Time picker in jquery. Can be used in a text box to select time, in 12hrs or 24hr mode. You can select hrs, mins, secs.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published