I'm using FullCalendar plugin(week view) for jQuery in my project. In FullCalendar week view, I can see a row showing the date in following format:- Sunday 9/6, Monday 9/7, Tuesday 9/8 so on...
var calendar = $('#calendar').fullCalendar({
header: {
left: 'prev',
center: 'title',
right: 'next'
},
defaultView: 'basicWeek'
});
Now I have used only header format in calendar for time sheet project. I want to get dates 9/6, 9/7 from current selected week in alert when move to next/previous week (this is for store date in database). It is possible to get dates separately for current week?