render *1.3.1* ============== Immediately forces the calendar to render and/or readjusts its size.
.fullCalendar( 'render' )
This method is useful in the scenario where a tab setup might hide/show a calendar. Call this method whenever the tabs are shown. Here is an example with the [jQuery UI tab plugin](http://jqueryui.com/demos/tabs/): $('#my-tabs').tabs({ show: function(event, ui) { $('#calendar').fullCalendar('render'); } }); Notice that this example calls `render` whenever *any* tab is shown, not just the tab that the calendar is within. This is okay, because FullCalendar is smart enough to only render calendars that are visible to the user.
Prior to version 1.4.2, the *render* method did not readjust the size of the calendar. It only render the calendar if it was not already rendered.