Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been looking around for a decent jQuery plugin that can handle both dates and times. The core UI DatePicker is great, but unfortunately I need to be able to take time in as well.

I've found a few hacks for the DatePicker to work with times, but they all seem pretty inelegant and Google isn't turning up anything nice.

Is there a good jQuery plugin for selecting dates and times in a single UI control with a usable interface?

share|improve this question
I'm pretty sure that my example is a bit less confusing and more user friendly. There are pros and cons of both. – Michael Stone Aug 7 '09 at 15:11
Couldn't find a good one. So ended up rolling my own github.com/keithhackbarth/jquery-datetime-picker – keithhackbarth Apr 9 at 23:00
Macabre that a question with over 200 upvotes is deemed non-constructive and thus closed. Dictatorship vs Democracy? – Clay Shannon Apr 29 at 18:11

closed as not constructive by Bo Persson, Robert Harvey Dec 28 '12 at 23:07

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

15 Answers

up vote 66 down vote accepted

Timepicker looks promising, especially since it builds on top of jQuery UI. Try the demo.

jQuery.timepickr is a clever approach and looks like it supports the jQuery UI themes.

share|improve this answer
Thanks, I looked at the first one before and had some issues implementing it, but it looks like it's pretty actively supported still so I'll try to make this work. Thanks! – Chelsea Aug 10 '09 at 13:57
8  
The first two projects here no longer exists. – reconbot Aug 4 '10 at 13:48
6  
This one is great! addyosmani.com/blog/… – Senthil Kumar Oct 30 '10 at 15:48
2  
Worth to try the most voted one just below. It seems other plugins made a better advancement. – sibidiba May 1 '11 at 16:43
3  
mobiscroll is kicking ass: code.google.com/p/mobiscroll – just__matt Feb 16 '12 at 0:03
show 1 more comment

By far the nicest and simplest DateTime picker option is http://trentrichardson.com/examples/timepicker/.

It is an extension of the jQuery UI Datepicker so it will support the same themes as well it works very much the same way, similar syntax, etc. This should be packaged with the jQuery UI imo.

share|improve this answer
3  
I've been using this one, and I LOVE it. – Sonny Oct 11 '10 at 18:00
3  
I like this, but it's still VERY buggy. – Alastair Pitts Dec 1 '10 at 1:43
9  
"VERY buggy"? Hardly. I use it in production code, and have for a while now. It's also actively developed. – Sonny Jan 6 '11 at 15:16
6  
@Sonny: whether you use it in production has no bearing on whether it is buggy or not. You may just not have seen its bugs because you're not doing the things with it that expose them, which perhaps Alastair is. On the other hand, he didn't offer any evidence for his claim, so I'm not inclined to take it too seriously... – iconoclast Dec 7 '11 at 14:36
13  
My biggest problem with this plugin is the UI: why would I want to use sliders, horizontal ones at that!, to input a time!? It looks and feels very awkward to me. I've had the experience so many times with sliders where I can't get it to the number that I want (repeatedly going a little over then a little under) and I end up typing it. A keyboard is normally the easiest way to enter a precise numerical value. If you want a visual input method, a clock is the normal one for time, not a slider. Harder to implement, but might actually be useful (as long as keyboard input is also possible). – iconoclast Dec 7 '11 at 14:42
show 11 more comments

@David, thanks for the recommendation! @fluid_chelsea, I've just released Any+Time(TM) version 3.x which uses jQuery instead of Prototype and has a much-improved interface, so I hope it now meets your needs:

http://www.ama3.com/anytime/

Any problems, please let me know via the comment link on my website!

share|improve this answer
6  
Any+Time(TM) version 4.x is now available! The new release supports TIME ZONES (find THAT in any other picker!) as well as jQuery selectors/chaining, easy-removal (avoid memory leaks!) and many other improvements. Please give it a ride, and if you have any problems or suggestions, let me know via the comment page on my website. – Andrew M. Andrews III Apr 22 '10 at 13:48
3  
Any+Time looks pretty slick. I like it. – Zack Peterson May 17 '10 at 22:07
Just implemented AnyTime in a few minutes on a Rails app. Works perfectly. – Gwyn Morfey Sep 25 '10 at 22:36
Awesome! Thanks, Gwyn! – Andrew M. Andrews III Oct 15 '10 at 13:29
I just chose the AnyTime picker as my picker of choice for my JSF app! Thanks for nice product, keep up the good work! – Arg Dec 27 '10 at 20:05
show 7 more comments

My best experience with a datepicker is with the prototype-based AnyTime. I know that's not jQuery, but it may still be worth the compromise for you. I know absolutely no prototype, and it's still easy enough to work with.

One caveat I've found: it is not forward compatible on some browsers. That is, it did not work with a newer version of prototype on Chrome.

share|improve this answer
1  
If I could use prototype this wouldn't be a problem, unfortunately we're stuck with jQuery for this app. – Chelsea Aug 7 '09 at 15:28
7  
Just an update - AnyTime 3 now works with jQuery. – Jaxidian Mar 26 '10 at 20:43
I haven't thought about this for months and months. But my personal project wanted some updating and I was just about ready to throw in some jquery. I thought I'd replace the datepicker while I'm at it because I didn't need all the features of Any+Time and thought I might as well go all jQuery. And bam! I come across this. Awesome timing. – David Berger Mar 27 '10 at 3:29
Nice, though the year selector ( clicking < or > ) is kludgy to me. – a coder Dec 11 '12 at 18:20

In my view, dates and times should be handled as two separate input boxes for it to be most usable and efficient for the user to input. Let the user input one thing at a time is a good principle, imho.

I use the core UI DatePicker, and the following time picker.

This one is inspired by the one Google Calendar uses:

jQuery timePicker:
examples: http://labs.perifer.se/timedatepicker/
project on github: https://github.com/perifer/timePicker

I found it to be the best among all of the alternatives. User can input fast, it looks clean, is simple, and allows user to input specific times down to the minute.

PS: In my view: sliders (used by some alternative time pickers) take too many clicks and require mouse precision from the user (which makes input slower).

share|improve this answer
Core UI DatePicker: jqueryui.com/demos/datepicker – Magne Dec 16 '11 at 16:09

Just to add to the info here, The Fluid Project has a nice wiki write-up overviewing a large number of date and/or time pickers here.

share|improve this answer

I've had some good luck with this one:

http://code.google.com/p/dyndatetime/

Demos are here:

http://www.mechanicalmarksy.com/hosted/toolman/dyndatetime/example.html

share|improve this answer
The only issue with that is the time field is a little difficult for non-technical uses. But thanks! – Chelsea Aug 7 '09 at 15:03
1  
Demo page is not working for me (blank). – a coder Dec 11 '12 at 18:26

I researched this just recently and have yet to find a decent date picker that also includes a decent time picker. What I ended up using was eyecon's awesome DatePicker, with two simple dropdowns for time. I was tempted to use Timepickr.js though, looks like a really nice approach.

share|improve this answer

I have ran into that same problem. I actually developed my using server side programming, but I did a quick search to try and help you out and found this.

Seems alright, didn't look at the source too much, but seems to be purely JavaScript.

Take look:

http://www.rainforestnet.com/datetimepicker/datetimepicker.htm

Here is the demo page link:

http://www.rainforestnet.com/datetimepicker/datetimepicker-demo.htm

good luck

share|improve this answer
I've been using this for a few years. It's getting a little long in the tooth but works. – a coder Dec 11 '12 at 18:27

This is some code I use to have a user select one datetimepicker, set the datetime, and have the other datetimepicker add One Minute to that time.

I needed this for a custom medication control....

Anyway, thought it might help someone else since I could not find the answer any where online...

(at least not a complete answer)

Keep in mind that the 60000 added, adds one minute. (60 * 1000 milliseconds)

$('.frdtPicker').datetimepicker({
        onClose: function(dateText, inst) {
            var endDateTextBox = $('.todtPicker');
            if (endDateTextBox.val() != '') {
                var testStartDate = new Date(dateText);
                var testEndDate = new Date(endDateTextBox.val());
                if (testStartDate > testEndDate) {

                    var testStartDate = new Date(dateText).getTime() + 60000;
                    var testStartDate2 = new Date(testStartDate); 

                    endDateTextBox.datetimepicker('setDate', (new Date(testStartDate2)));
                }
            }
            else {
                var testStartDate = new Date(dateText).getTime() + 60000;
                var testStartDate2 = new Date(testStartDate);
                endDateTextBox.datetimepicker('setDate', (new Date(testStartDate2)));
            }
            $('.frdtPicker').val(dateText); //endDateTextBox.val());

        },
        onSelect: function(selectedDateTime) {
            var start = $(this).datetimepicker('getDate');
            $('.todtPicker').datetimepicker('option', 'minDate', new Date(start.getTime()));
        }
    });
share|improve this answer

Take a look at the following JavaScript plugin.

Javascript Calendar with date and time

I've made it to be simple as possible. but it still in its early days. Let me know the feedback so I could improve it.

share|improve this answer

Not jQuery, but it works well for a calendar with time: JavaScript Date Time Picker.

I just bound the click event to pop it up:

$(".arrival-date").click(function() {
    NewCssCal($(this).attr('id'), 'mmddyyyy', 'dropdown', true, 12);
});
share|improve this answer
The link no worky. – a coder Dec 11 '12 at 18:28
1  
Updated the link - they moved it. – bigspotteddog Dec 12 '12 at 20:46
I've been using that one for a few years, though I invoked it differently (hence not recognizing from your code). I've been migrating to jquery's DatePicker, since the rainforest one is looking a little long in the tooth. – a coder Dec 12 '12 at 20:51

I make one function like this:

function getTime()
{
    var date_obj = new Date();
    var date_obj_hours = date_obj.getHours();
    var date_obj_mins = date_obj.getMinutes();
    var date_obj_second = date_obj.getSeconds();

    var date_obj_time = "'"+date_obj_hours+":"+date_obj_mins+":"+date_obj_second+"'";
    return date_obj_time;
}

Then I use the jQuery UI datepicker like this:

$("#selector").datepicker( "option", "dateFormat", "yy-mm-dd "+getTime()+"" );

So, I get the value like this: 2010-10-31 12:41:57

share|improve this answer
sometimes we need to determine the time (not using getTime function) – bungdito Jul 6 '11 at 5:01

We had trouble finding one that worked the way we wanted it to so I wrote one. I maintain the source and fix bugs as they arise plus provide free support.

http://www.yart.com.au/Resources/Programming/ASP-NET-JQuery-Date-Time-Control.aspx

share|improve this answer
This link is not active unfortunately. – Stefan Oct 1 '12 at 11:30

Ah I just work so hard to wrote this plugin you guys.
It is so original, easy to use, and even keyboard-based for power users!

$('.other-plugin').replaceWith($('<input />'));
share|improve this answer
haha y u no like, downvoters? 9/1\12 2;33 pn – Benjamin Sep 1 '12 at 18:34

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