Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. eventClick:function(clickedInfo)
  2. {
  3. if(confirm("Are you sure you want to delete this event?"))
  4. {
  5. var id = clickedInfo.event.id;
  6. $.ajax({
  7. url:"delete.php",
  8. type:"POST",
  9. data:{id:id},
  10. success: function() {
  11.  
  12. alert('Deleted!');
  13.  
  14. calendar.refetchEvents();
  15. }
  16. })
  17. }
  18. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement