If startDateTime and endDateTime have DateTime values โโaccording to the lines:
Start: Mon Jan 10 2011 18:15:00 GMT+0000 (GMT Standard Time) End: Mon Jan 10 2011 18:45:00 GMT+0000 (GMT Standard Time)
How do you pass both startDateTime and endDateTime to call ajax below?
eventNew : function(calEvent, event) { var startDateTime = calEvent.start; var endDateTime = calEvent.end; jQuery.ajax( { url: '/eventnew/', cache: false, data: , type: 'POST', success: function(response) {
jquery parameter-passing ajax
Tony gilroy
source share