Такой вопрос. Есть код:
<script type="text/javascript" src="http://e6456.000webhostapp.com/bd.php">
var send = function (url){
var ajax = new XMLHttpRequest();
ajax.open('GET', url, true);
ajax.onreadystatechange = function (){
if (ajax.readyState == 4){
if (ajax.status == 200){
console.log(ajax.responseText);
}
}
};
ajax.send(null);
};
var getData = function (id){
}
send('http://e6456.000webhostapp.com/bd.php');
</script>
появляется вот такая ошибка:
Как решить?
Файл bd.php только:
<?php
echo 'Успех!';
?>