Hi here i want to fire next or prev button click event of jquery full calender. But the click event is not firing am tried several ways it did not fired
$(document).ready(function () {
$('#contaner_wrapper').css("height", "100%");
$(".fc-button-prev a span").trigger('click');
$(".fc-button-next a span").trigger('click');
$('.fc-button-prev a span').click(function () {
alert($("#calendar").fullCalendar('getView').start.toString());
var abc = $("#calendar").fullCalendar('getView').start.toString();
var ab = $("#calendar").fullCalendar('getView').end.toString();
// Displaymonthevents();
});
$('.fc-button-next a span').click(function () {
// Displaymonthevents();
alert($("#calendar").fullCalendar('getView').start.toString());
var abc = $("#calendar").fullCalendar('getView').start.toString();
var ab = $("#calendar").fullCalendar('getView').end.toString();
});
});