skip to Main Content

Can HTML & Bootstrap-Datepicker be used to select a date range with a single calendar?

I want to make a range date picker with bootstrap with single calendar. Now I have it but with two calendars $('#datepicker').datepicker({ }); <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.8.0/css/bootstrap-datepicker.css" rel="stylesheet"/> <div class="input-daterange input-group" id="datepicker"> <input type="text" class="input-sm form-control" name="start" /> <span class="input-group-addon">to</span> <input type="text"…

VIEW QUESTION
Back To Top
Search