Хочу спарсить данные с
www.ikis.tsogu.ru/shedule/funct.php отправляя POST запрос act=load_info
$.ajax({
type: "POST",
url: "http://www.ikis.tsogu.ru/shedule/funct.php",
dataType: "json",
data: ({ action:'load_info'}),
cache: false,
async: false,
success: function(data){
var k=0;
for (i=0;i<data.length;i++){
if (data[i]['err']==0){
$(".err_cell").hide();
$("#win_shed").attr('shedule'+i,data[i]['id']).attr('union'+i,data[i]['un']).attr('year'+i,data[i]['year']);
k++;
}
}
if (k>0){
$("#win_shed").attr('count',k);
} else {
$(".err_cell").show();
$("#win_shed").attr('count',0);
}
}
});
}
Ответ в console таков:
XMLHttpRequest cannot load www.ikis.tsogu.ru/shedule/funct.php. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin
Можно обойти Access-Control-Allow-Origin при условии, что админского доступа к ikis.tsogu.ru нету