jquery, getjson
Пожалуста, подскажите, почему не выводит "a = 1" ?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$(document).ready(function () {
$.getJSON('http://exy.com.ua/q/index.php', function(data) {
alert ('a = ' + data.a);
}
);
});
</script>
</head>
<body>
</body>
</html>
|