I am using a customized version of fullCalendar. I would like my initial display and page reloads to display the following month. So the current month is March, when I bring up the calendar I would like to see April as the default month. I see this block of code.
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
var options = {
weekday: "long", year: "numeric", month: "short",
day: "numeric", hour: "2-digit", minute: "2-digit"
};
I tried to change the third line var m = date.getMonth(); to var m = (date.getMonth()+ 1);
This had no affect. I am out of my element here. Any help would be appreciated greatly.
John