jquery - Error callback doesnt have the details in IE -


i calling ajax call in app , error callback doesn't have error details in internet explorer, other browsers working fine

app.api.remoteupload(datacall, url, function (data, status) {     alert(data);  }, function (error, status) {     alert(error); }); 

alert(error) empty object in ie error condition, others browsers working fine. thoughts ?

thanks,


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -