fullcalendar - Fullcalender load static event on ajax call -
i want current event on ajax call when calender load. how can possible? tried
$(document).ready(function() { console.log(event.title); $.ajax({ url: 'ajax_call1.php', //data: {vv:vv}, type: 'post', success: function( response ) { $("#result").html(response); alert("you click --"+response); } }) }
but can not event title on ajax call please me.
Comments
Post a Comment