Datepicker shortcuts e.g 1m, 1y, 1d - javascript

I'm looking for a datepicker that support entering by the user 5y and it will return now + 5years.
if possible if prefer to use jquery ui datepicker control, or if someone know about other control.
The jquery control blocks entering non numeric characters.
Thanks, Pini

Take a look at the demo from DateJS.

Any+Time is my go-to date (and time) picker. Highly customizable.

Related

DatePicker in Firefox

I know similar and identical questions have been asked before but none have gotten the answer I need.
I have a form where users enter a date. Obviously it is better for the UX that they have a calendar or similar easy way of picking the date for something. However, Firefox does not support the date picker input type offered by Chrome and Safari.
Because I want my application to be as light-weight and easy to load as possible, I do not want to use JQuery UI. I am using JQuery for many other things so that is a possibility. I want something that matches the GUI of Firefox and does not inhibit the date picker of other browsers that do support the input type.
If this is not possible, is there anyway to make sure that the date is formulated similar to how Chrome formulates it's dates or to in some other way make it easier for the user to enter the date? Preferably with JavaScript or HTML examples.
If you do not want to use jQuery UI, you can use something else like https://github.com/dbushell/Pikaday - it's lightweight and certainly better than jQuery UI one in my opinion.
In order to be consistent with the formatting, you could disable Chrome's native date picker (and Safari) and instead consistently use the same date picker across your application for similar UX.

input time in 24h:mm format cross-browser

I am trying to create a cross-browser time input.
<input type="time" value="22:14" tabindex="0"></input>
The problem is it decides whether to display time in am/pm format or in 24h format on its own. And some browsers do not support it and display a text input instead.
Is there a library for this purpose? Or the only way is to write a custom script for a text input to make it look like a time input?
If you want a homogenous cross-browser experience I think you'll have to use some third-party library.
Take a look at Bootstrap Timepicker for instance.
I have found a good library - jQuery Based, cross-browser UI Library - w2ui!
More information on its DATE and TIME controls: http://w2ui.com/web/docs/form/fields-date
<div> <input type="eu-time"> </div>
And a simple script for this:
$('input[type=eu-time]').w2field('time', { format: 'h24' });

jquery date input plugin

I would like to know if there is a date input plugin for jquery that work like this plugin epecifically the datetimeinput.
This input check that the values are correct and only let the user to input the numbers not the / characters for the date.
I know that there are some mask inputs plugins out there but I would like one that validates and only lets the user to input correct date.
Regards
You can use jQuery Calendars Datepicker. They providing validation plugin also
You will get required info from HERE
Maybe this awesome jquery plugin fits your needs.
Working demo code. However there are much more plugins just try a short search on google.
mongaru, why don't you use the plugin that you linked? It's free for personal use.

Need Best Jquery DatePicker Code

I need a jQuery date picker. I am doing web devlopment and in the project I have to use date picker in a different way and at different part of the page.
Can anyone provide a link to download the date picker?
Try http://jqueryui.com/demos/datepicker/
Air Datepicker is the BEST and the COOLEST. it's my favorite

Javascript Time Picker like Windows

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
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
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/
Here's a cool one.
http://www.java2s.com/Code/JavaScript/GUI-Components/FancyTimePicker.htm
An online example of the control is posted here.
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.
I'm pretty fond of the jQuery stuff, There is a fairly nice one here.
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
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

Categories