I'm using FullCalendar
and I'm trying to display the calendar view automatically without click on the today
button each time. For do this I've inserted in the initialization this stuff:
$(document).ready(function()
{
$('#calendar').fullCalendar({
aspectRatio: 2.40,
viewDisplay: 'month'
})
});
But the calendar isn't displayed, I must click on today
button, I want that the calendar is displayed automatically, without click on today
button each time. How can I do this?