I want to rechange value of firstDay properties of FullCalendar by jquery when i change view mode month -> week.
Initial
$('#calendar').fullCalendar({ firstDay: 0 })
Change To
$('#calendar').fullCalendar({ firstDay: moment().weekday() })
But it's not work.
I think it's code will place inside viewRender function, but i don't know how do that?.
Please help me, thanks all so much.