I am looking for some kind of example of a Javascript Time Picker that is similar to the one used in Windows to pick the time...well except with out the seconds being in their. I have a mockup in place at the moment but trying to figure out how some of the user functionality should be be as it is two inputs and a dropdown. I guess I just am not happy with it at this point. Thanks ahead of time for any help

link|improve this question

50% accept rate
narrow down what you need help with please. This is pretty general. – Dmitri Farkov May 26 '09 at 16:27
Sorry I have been looking for a time picker that has the same functionality has the one for Windows, I can use masking but how would that work with selecting just a section given if its an hour, minute, or AM/PM. Since in Windows when selecting one of the sections you can either type in or use the arrow keys to change it. I am actually surprised that there is not something close to it already. I do really like the large UI examples but I need something that has more of a tight interface. – Josh Knutson May 26 '09 at 18:56
feedback

7 Answers

up vote 1 down vote accepted

The Windows time picker (if you're referring to the one to change the system clock) is basically just a masked edit text box. If you're looking for something similar, you just need some JavaScript to do masked edits, like this one:

http://digitalbush.com/projects/masked-input-plugin/

To make it specifically for time, you should be able to easily add logic to ensure the hours don't go over 12 (or 24), and the minutes don't go over 59.

Personally, I prefer the way Google Calendar does time selections. There is a jQuery plugin for this which can be found here:

http://labs.perifer.se/timedatepicker/

link|improve this answer
I created the prototype version from labs.perifer.se/timedatepicker – Josh Knutson Dec 3 '09 at 14:57
feedback

There are a number of jQuery plugins that you can use for the perfect looking time picker control.

Here is a good one: http://plugins.jquery.com/project/timepicker

link|improve this answer
feedback

Here's a cool one.

http://www.java2s.com/Code/JavaScript/GUI-Components/FancyTimePicker.htm

An online example of the control is posted here.

link|improve this answer
feedback

Like Dan said, if you are looking for a masked text input and if you want to use the PrototypsJS framework, there is http://code.google.com/p/phenx-web/ . And if you want a good date/time picker, you could use this : http://home.jongsma.org/software/js/datepicker (also PrototypeJS). I'm currently working on it with Jerermy Jongsma to add more features.

link|improve this answer
feedback

I'm pretty fond of the jQuery stuff, There is a fairly nice one here.

link|improve this answer
link messed up. – Chetan Sastry May 26 '09 at 17:31
Thanks for letting me know! – moshen May 26 '09 at 17:34
feedback

I ended up creating a prototype time picker that for the time being is less fancy than a lot of the others out there. It shows up a regular input until you click on it then it shows a dropdown that has times in it. I can share the code if anyone is interested

link|improve this answer
feedback

A timepicker shouldn't slow down the user's interaction, should be pretty straightforward without having to play with it for a while, and should be keyboard-accessible for users who can't manipulate a mouse. The time-picking functionality provided by the Any+Time™ Datepicker/Timepicker AJAX Calendar Widget with TimeZone Support meets all of these design goals, supports countless date/time formats and is easy to customize using CSS or jQuery UI.

A good test of timepicker usability is to think of an odd time (say, 10:32pm) and then see how long it takes to accurately select that time using various time pickers. You can probably do it with Any+Time™ faster than you can even write out the time by hand... how's that for speed and ease of use? :-p

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.