Hi,
i'm writing this jquery script to send data to a php file via ajax it works but am getting this error can any body tell for I can solve this the code is posted bellow so is the error
here is the error which I get after the data is sent.
Item is undefined: if (item.guid != null)
here is the code:
// Data
dataObj = { correctAnswers: correctAnswers,
startTime:startTime,
startDate:startDate
};
//Post Data To contorler
$.ajax({
type: "POST",
url: "save",
data: dataObj,
success: function(data) {
//Need to return the file contents somehow!
alert("Data sucessfully Sent\n");
}
});