Does anyone faced problem retrieving data from yipit using IE10? It works fine with Chrome and FireFox. With IE10, I get syntax error in jquery file.
Any help will be appreciated.
function getYipit() {
$.ajax({
type: "GET",
url: "
http://api.yipit.com/v1/deals",
data: { key: MY_KEY, division:'boston'},
dataType: "jsonp",
jsonpCallback: 'example',
success: function (data)
{
console.log(data);
alert("Success!");
},
error: function(data){
alert("errrr");
}
cache: false,
});
}