Bootstrap Datepicker with multiple months

Muntasim picture Muntasim · Feb 2, 2014 · Viewed 7.2k times · Source

Is there any bootstrap datepicker available that supports displaying multiple months? There is an option in jquery-ui datepicker: numberOfMonths.

I need something like this: http://jqueryui.com/resources/demos/datepicker/multiple-calendars.html

Answer

Sridhar Srivin picture Sridhar Srivin · Aug 24, 2017

two months in a single view

<script>
    $( function() {
        $( "#datepicker" ).datepicker({
            numberOfMonths: 2
        });
    } );
</script>

<p>Date: <input type="text" id="datepicker"></p>