please help me to receive josn data from this site, need to make imei check don't know how to get their response. Tried php porxy page, but unsuccessfull
they use this script, but origin don't let me make crossdomain AJAX Thanks for attention
$.ajax({ type: "POST", url: "http://iphoneimei.info/json/unlock/request" ,
data: {imei: '012651006507772'} ,
error: function() {
$("#unlock-msg").html('<span class="red"> Error </span>');
$("#unlock-loading").hide();
$("#unlock-main-div").fadeOut("fast");
},
success: function(data) {
alert(data.msg);
}
,dataType: "json"});