I\'m using the jQuery tools tabs to divide my page into tabs. One of those tabs contain a jQuery Fullcalendar. Because I load JavaScript last in the page for speed and to av
i had a similar issue using easyappointments project, the solution was to call fullCalendar('render') , within a callback function after the next wizard div is showed:
JQuery Code:
// Display the next step tab (uses jquery animation effect).
var nextTabIndex = parseInt($(this).attr('data-step_index')) + 1;
$('#button-next-1').click(function () {
$(this).parents().eq(1).hide('fade', function () {
/* some code */
$('#wizard-frame-' + nextTabIndex).show('fade');
$('#calendar').fullCalendar('render');
});
});
Html Code:
/*some code*/