FullCalendar

Adam Shaw

buttonText 1.3

Text that will be displayed on buttons of the header.

Object, default:

{
    prev:     ' ◄ ',  // left triangle
    next:     ' ► ',  // right triangle
    prevYear: '&nbsp;&lt;&lt;&nbsp;', // <<
    nextYear: '&nbsp;&gt;&gt;&nbsp;', // >>
    today:    'today',
    month:    'month',
    week:     'week',
    day:      'day'
}

If you wanted to change the prev/next buttons to use < and > characters, here is what you would do:

$('#calendar').fullCalendar({
    buttonText: {
        prev: '&lt;',
        next: '&gt;'
    }
});

 

Support FullCalendar's
Development!