Guest User

Untitled

a guest
Oct 28th, 2013
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.ajax({
  2.         type: "POST",
  3.         url:url,
  4.         contentType: "application/json",
  5.         processData: false,
  6.         data: JSON.stringify({
  7.                 start_date:   scheduler.getEvent(id).start_date,
  8.                 end_date:  scheduler.getEvent(id).end_date,
  9.                 text: scheduler.getEvent(id).text,
  10.                 userId: userId
  11.         }),
  12.         success:function(result){
  13.          //here some code
  14.         }
  15.     });
Advertisement
Add Comment
Please, Sign In to add comment