I was wondering if there was a way in Arshaw\'s FullCalendar to: 1- Change the calendar from showing weekends to not show weekends and vice versa. 2- To dynamically change t
I came across this on google and figured I would add an option not mentioned already. The calendar days all have a css class with their name, making them easy to target.
$(document).ready(function(){
$('#toggleOff').on('click', function(){
$('.fc-sat').hide();
$('.fc-sun').hide();
});
$('#toggleOn').on('click', function(){
$('.fc-sat').show();
$('.fc-sun').show();
});
});