I really like plugin daterangepicker, but it uses 2 calendars for selecting a date range.
Is it possible to select a date range with only 1 calendar? do you know other plugins?
I want to make something like that
I really like plugin daterangepicker, but it uses 2 calendars for selecting a date range.
Is it possible to select a date range with only 1 calendar? do you know other plugins?
I want to make something like that
Share Improve this question asked Jul 20, 2015 at 12:48 leseklesek 1672 gold badges2 silver badges10 bronze badges2 Answers
Reset to default 3You can refer the below link. It might help you.
http://www.daterangepicker./
<input type="text" name="daterange" value="01/01/2015 - 01/31/2015" />
<script type="text/javascript">
$(function() {
$('input[name="daterange"]').daterangepicker();
});
</script>
You can use the singleDatePicker
on the calendar configuration, and set it true.
singleDatePicker: true,
http://www.daterangepicker./#example3