<!DOCTYPE html>
<html>
<head>
<script>
var url="http://www.godoro.com/front-end/CategoryList.php";
var http = new XMLHttpRequest();
http.onreadystatechange = function() {
if (http.readyState == 4 && http.status == 200) {
alert("Yan�t "+http.responseText);
}
};
http.open("GET", url, true);
http.send();
</script>
</head>
<body>
<h1>JSON Edinme</h1>
</body>
</html>
Dosyayı İndir