Apr 23rd — v7.0.0-rc.2
Version 7 will be released soon. Read the v7 docs
edit doc

Calendar::today

Moves the calendar to the current date.

calendar.today()

Example using today with an external button:

document.getElementById('my-today-button').addEventListener('click', function() {
  calendar.today();
});