Datepair.js is a lightweight, modular javascript plugin for intelligently selecting date and time ranges, inspired by Google Calendar. It will keep the start and end date/times in sync and can set default values based on user action. There are no external dependencies, however it can easily be used with jQuery or Zepto. The plugin does not provide any UI widgets; it's preconfigured to work with jquery-timepicker and Bootstrap Datepicker, but you can use it with any datepicker or timepicker (or none at all).
Looking for jquery-datepicker? Scroll down.
- jquery-timepicker (>= 1.3) (this dependency can be overridden)
- Bootstrap Datepicker (>= 1.3) (this dependency can be overridden)
Include dist/datepair.js
or dist/jquery.datepair.min.js
in your app.
var container = document.getElementById('container')
var datepair = new Datepair(container, options);
Where #container
contains time/date input elements with the appropriate class names. options
is an optional javascript object with parameters explained below.
You can also install via Bower with bower install datepair.js
.
-
dateClass
Class name of the date inputs, if any.
default: "date" -
defaultDateDelta
Fill in the second date value with the specified range when the users selects the first date. Value is in days. Set this tonull
to disable automatically setting the second date.
default: 0 -
defaultTimeDelta
Fill in the second time value with the specified range when the users selects the first time. Value is in milliseconds; set this to7200000
for a 2 hour range, for example. Set this tonull
to disable automatically setting the second time.
default: 0 -
endClass
Class name of the range end input(s).
default: "end" -
parseDate
A function that takes a jQuery element for a date input and returns a local timeDate
object representing the date input value.
default: function for Bootstrap Datepicker -
parseTime
A function that takes a jQuery element for a time input and returns a local timeDate
object representing the time input value. See example page for more info.
default: function for jquery-timepicker -
setMinTime
A function that takes a jQuery element for a time input and a local timeDate
object representing the time, and sets the timepicker minTime value.
default: function for jquery-timepicker -
startClass
Class name of the range start input(s).
default: "start" -
timeClass
Class name of the time inputs, if any.
default: "time" -
updateDate
A function that takes a jQuery element for a date input and a local timeDate
object representing the date, and sets the input value.
default: function for Bootstrap Datepicker -
updateTime
A function that takes a jQuery element for a time input and a local timeDate
object representing the time, and sets the input value.
default: function for jquery-timepicker
-
getTimeDiff
Get the date/time range size, in milliseconds.var milliseconds = datepair.getTimeDiff();
-
remove
Unbind the datepair functionality from a set of inputs.datepair.remove();
-
rangeError
Fired after the user interacts with the datepair inputs but selects an invalid range, where the end time/date is before the start. -
rangeIncomplete
Fired after the user interacts with the datepair inputs but one or more empty inputs remain. Unpaired inputs (such as a start date with no corresponding end date) will not be taken into account. -
rangeSelected
Fired after the user interacts with the datepair inputs and all paired inputs have valid values.
Datepair.js includes an optional jQuery interface that can simplify usage when working with jQuery or Zepto. To activate, include both datepair.js
and jquery.datepair.js
, or just jquery.datepair.min.js
. (The minified version includes both scripts.)
$('#container').datepair(options);
var milliseconds = $('#container').datepair('getTimeDiff');
$('#container').datepair('remove');
Submit a GitHub Issues request.
- Install dependencies (grunt)
npm install
- To build and minify, run
grunt
- Use
grunt watch
to continuously build while developing
This software is made available under the open source MIT License. © 2014 Jon Thornton.