Search code examples
fullcalendar

FullCalendar - How Do You Remove the Today Button On Initialization?


On FullCalendar's default initialization, you get a calendar that looks like:

enter image description here

Is there anyway to get rid of the today button by passing in a key to $('#calendar').fullCalendar({})?


Solution

  • You can just use header and leave out the today to have the today button not displayed.

    {
        left:   'title',
        center: '',
        right:  'prev,next'
    }