fullcalendar ajax success does not working
fullcalendar ajax success does not working I am making reservation website using fullcalendar. I insert event into my DB using Ajax. However, the problem is that success function was not working, but every data was successfully inserted into DB. Also I changed success to error, but still nothing happened. Here is code where I insert event into DB select: function(start, end, allDay) { var teacher = prompt("Enter ResourceID"); if(teacher) { var start = $.fullCalendar.formatDate(start, "Y-MM-DD HH:mm:ss"); var end = $.fullCalendar.formatDate(end, "Y-MM-DD HH:mm:ss"); $.ajax({ url:"http://show981111.cafe24.com/login-system/addevent.php", type:"POST", data:{userName: '<?php echo $name; ?>' , newlyBookedDate:start, courseTeacher : teacher, userBranch:'<?php echo $userBranch; ?>', userID: '<?php echo $userID; ?...