Add datepicker to inputs or to any other element.

This is a customized version of Datepicker for Bootstrap. To use, include datepicker.js and datepicker.css from our shared assets host.


Standard Datepicker

Check out the official documentation for how to use it.

<input type="text" class="datepicker" data-date-format="mm-dd-yyyy">
<script>
  $(function() {
    $('.datepicker').datepicker();
  });
</script>

Inline Datepicker

Example of a inline datepicker (attached to a <div>).

<div class="datepicker" data-date-format="mm-dd-yyyy"></div>
<script>
  $(function() {
    $('.datepicker').datepicker();
  });
</script>