i am using following code to publish Image on facebook
$.ajax({type: "POST",
url: "https://graph.facebook.com/me/photos",
data: {message: "",
url: "my Image url",
access_token: accessToken,
format: "json"},
dataType: "json",
success: function(data){
uploads(id);
},
error: function(data){alert("Failed! " + data.error);}
});
This code works fine on Chrome, firefox and any other browser invented in the world but it is not working in Internet explorer. Whats wrong in this code??