Ajax Requests to Facebook graph not working on IE
问题 I am developing a facebook app. I am trying to get the likes for urls as I am iterating through an array of urls and adding it to the div that should contain the likes. This is my ajax request: $.ajax({ type: "GET", cache: false, url: 'https://graph.facebook.com/?id='+videoUrl, dataType : "json", async: false, header: "application/json", success: function(data) { if(data.shares == null) { likeCount = 0; } else { likeCount = data.shares; } } }); This works perfectly fine on Chrome, Firefox,