I am getting a javascript error on firefox 3.5, when trying to call an ajax method.
Please find the error below:
XML Parsing Error: no element found
async is also part of options. Also specify the dataType as xml
async
dataType
xml
function Update(Id) { $.ajax({ type: "GET", async: false, dataType: "XML", url: ROOT_URL + "/sevice/udates.svc/Update?Id=" + Id, success: function(response) { } }); }