mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-06-27 16:10:13 +08:00
16 lines
255 B
Plaintext
16 lines
255 B
Plaintext
|
|
today
|
|
=====
|
|
|
|
Moves the calendar to the current date.
|
|
|
|
<div class='spec' markdown='1'>
|
|
.fullCalendar( 'today' )
|
|
</div>
|
|
|
|
Example using `today` with an external button:
|
|
|
|
$('#my-today-button').click(function() {
|
|
$('#calendar').fullCalendar('today');
|
|
});
|