Back to Home Back to Post

jQuery Clock Time Picker v2.3.5

NPM package "jquery-clock-timepicker"

Clock Timepicker Plugin for jQuery

Examples

(with the most important settings. Of course, you can combine these different settings...)

Standard time picker
(no settings specified)

Required time picker
{ required: true }

Time picker with different separator
{ seperator: '.' }

Time picker with precision

{ precision: 5 }
{ precision: 10 }
{ precision: 15 }
{ precision: 30 }
{ precision: 60 }

Time picker - show clock picker only on mobile phones
{ onlyShowClockOnMobile: true }

Duration picker
{ duration: true, maximum: '80:00' }

Duration picker that allows to select negative durations
{ duration: true, durationNegative: true }

Duration picker with minimum and maximum
{ duration: true, minimum: '1:00', maximum: '5:30' }

Negative duration picker with minimum and maximum
{ duration: true, durationNegative: true, minimum: '-5:00', maximum: '5:00', precision: 5 }