datepicker range

by moshfeu

HTML

<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/css/bootstrap-datepicker3.min.css">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/js/bootstrap-datepicker.min.js"></script>
<div class="card-body">
  <div id="select-date" class="calendar"></div>
</div>

JavaScript

let calendar = new calendar({
  selector: "#select-date",
  pastDates: false,
  dateFormat: "dd-M-yyyy"
});

$("#select-date").on("click", function () {
  var selected = $(this).datepicker("getDate");
  alert(selected);
});