jonthornton / jquery-timepicker

A javascript timepicker plugin for jQuery inspired by Google Calendar.
https://www.jonthornton.com/jquery-timepicker
MIT License
1.88k stars 643 forks source link

Prevent to stop entering other times rather between mintime, maxtime #81

Closed cutepraba closed 11 years ago

cutepraba commented 11 years ago

Hi,

First of all thanks for your superlike timepicker. I have an issue, I want to stop entering other times rather between mintime, maxtime. Is this function available or I missed documentation? I have tried forceRoundTime and also I dont know how to control after callback?

Looking for your response.

thank you. praba

jonthornton commented 11 years ago

There is now a timeRangeError event you can listen on. Use it like this:

$('#timeinput').on('timeRangeError', doSomething);

Thanks for the feature suggestion!