A pure Javascript date range picker for hotels. Requires Fecha and supports all modern browsers. Check the demo here.
Include files:
<link href="/path/to/hotel-datepicker.css" rel="stylesheet"><!-- Optional -->
<script src="/path/to/fecha.js"></script>
<script src="/path/to/hotel-datepicker.min.js"></script>
Initialize with vanilla JS.
<input id="input-id" type="text">
var hdpkr = new HotelDatepicker(document.getElementById('input-id'), options);
- Type:
String
- Default:
YYYY-MM-DD
The date format string.
- Type:
String
- Default:
YYYY-MM-DD
The date format string in the info box. If not set, it uses the format
option.
- Type:
String
- Default:
-
The separator string used between date strings.
- Type:
String
- Default:
sunday
Default start week: sunday
or monday
.
- Type:
Date
orString
- Default:
new Date()
The start view date. All the dates before this date will be disabled.
- Type:
Date
orString
orBoolean
- Default:
false
The end view date. All the dates after this date will be disabled.
- Type:
Number
- Default:
1
Minimum nights required to select a range of dates.
- Type:
Number
- Default:
0
Maximum nights required to select a range of dates.
- Type:
Boolean
- Default:
false
If true
, the selection of the second date must be after the first date. If false
, you can select a range of dates in both directions.
- Type:
Array
- Default:
[]
An array of strings in this format: YYYY-MM-DD
. All the dates passed to the list will be disabled.
- Type:
Boolean
- Default:
false
If true
, allows the checkout on a disabled date. But with a criteria. Let's say we have these disabled dates: 03 April 2020
and 04 April 2020
. With this option enabled, an user can still select the first date (03 April 2020
) for the checkout. But not 04 April 2020
.
- Type:
Element
- Default:
''
An element for putting the datepicker. If not set, the datepicker will be appended to the parent of the input.
- Type:
String
- Default:
.5s
The duration (in seconds) of the animation (open/close datepicker).
- Type:
Boolean
orFunction
- Default:
true
Shows a tooltip when hovering a date. It can be a custom function:
hoveringTooltip: function(nights, startTime, hoverTime) {
return nights;
}
- Type:
Boolean
- Default:
true
Show/hide the toolbar.
- Type:
Boolean
- Default:
true
Close the datepicker after the selection of the second date.
- Type:
Object
Default:
i18n: {
selected: 'Your stay:',
night: 'Night',
nights: 'Nights',
button: 'Close',
'day-names': ['Sun', 'Mon', 'Tue', 'Wed', 'Thur', 'Fri', 'Sat'],
'month-names': ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
'error-more': 'Date range should not be more than 1 night',
'error-more-plural': 'Date range should not be more than %d nights',
'error-less': 'Date range should not be less than 1 night',
'error-less-plural': 'Date range should not be less than %d nights',
'info-more': 'Please select a date range longer than 1 night',
'info-more-plural': 'Please select a date range longer than %d nights',
'info-range': 'Please select a date range between %d and %d nights',
'info-default': 'Please select a date range'
}
This function is called when the picker gets the date range string from the input.
This function is called when the picker sets the input value.
Opens the datepicker.
Closes the datepicker.
Gets the datepicker DOM element.
Sets the date range value.
Clears the datepicker value.
Maintained under the Semantic Versioning guidelines.
Hotel Datepicker was initially developed as a fork of jQuery Date Range Picker Plugin by Chunlong. But it was entirely rewritten in the version 2. It is now an independent project.
MIT Copyright (c) 2017 Benito Lopez