I want to show two months using bootstrap datepicker. After search on google I am not able to find how to show multiple months using bootstrap datepicker. I found that I can
Just put this line after calling Bootstrap datepicker
var _datepicker = jQuery.fn.datepicker;
And after calling jQuery-ui JS
jQuery.fn.datepicker = _datepicker;
So, your call will looks like
var _datepicker = jQuery.fn.datepicker; jQuery.fn.datepicker = _datepicker;