Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

fullcalendar

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({})?

like image 956
Lloyd Banks Avatar asked Nov 07 '16 00:11

Lloyd Banks


1 Answers

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

{
    left:   'title',
    center: '',
    right:  'prev,next'
}
like image 200
Ryan89 Avatar answered Oct 07 '22 01:10

Ryan89