In jQuery fullcalendar we have previous and next buttons. How can we call some events on click of these buttons?
When you click them, viewRender event is triggered. You could add your code inside it as well.
$('#calendar').fullCalendar({ viewRender: function(view, element) { //Do something } });