In jQuery fullcalendar we have previous and next buttons. How can we call some events on click of these buttons?
$('.fc-button-next span').click(function(){ //do your work }); $('.fc-button-prev span').click(function(){ //do your work });