getting the value of daterangepicker bootstrap
$(‘#IDOfDateRangePicker’).data(‘daterangepicker’).startDate; $(‘#IDOfDateRangePicker’).data(‘daterangepicker’).endDate;
$(‘#IDOfDateRangePicker’).data(‘daterangepicker’).startDate; $(‘#IDOfDateRangePicker’).data(‘daterangepicker’).endDate;
A little late to the party but here is the simplest way I’ve found to express starts/ends of weeks. The isoWeek argument starts weeks on Monday according to the ISO 8601, while week starts weeks depending on your locale (so probably either Sunday or Monday). This week: moment().startOf(‘isoWeek’) moment().endOf(‘isoWeek’) Next week: moment().add(1, ‘weeks’).startOf(‘isoWeek’) moment().add(1, ‘weeks’).endOf(‘isoWeek’) … Read more