Jquery Ajax doesn't work at Internet Explorer
When I use jQuery ajax put at Internet Explorer 9, I am getting data at response body however it doesn't pass into success function. How can I make it work? example: ... $.ajax({ async : false, type: 'PUT', contentType: 'application/json', url: updateUrl, data: JSON.stringify(model), dataType: 'json', success: function(data) { console.log("Here!");//it comes here console.log(data);//it logs undefine at ie, firefox and etc is logging data r = resultResponse(data); }, error: function(data) { try { r = error($.parseJSON(data.responseText)); } catch (err) { //Handle error } } }); ... I debugged