I need to add an event for all the sundays on my calendar. Is there any option available in FullCalendar?
day = 'Sunday'; <------ I need to pass this day to create event
var date = new Date();
var event = {id: result.id, title: from_time + '-' + to_time, start: new Date(date), allDay: false};
}
$('#calendar').fullCalendar('renderEvent', event, true);