Помогите.
Не могу понять почему не срабатывает опрос blockchain JSON
Пример html кода:
<html>
<head>
<title>final_balance</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script>
$(document).ready(function() {
jQuery.getJSON(
"http://blockchain.info/address/1Dy653qDGdrshqi6exaDQrUsmQ71fhgfjb?format=json",
function(data){
$("#test").text(data.final_balance);
}
);
});
</script>
</head>
<body>
JSON
<div id="test"></div>
</body>
</html>
Аналогичный код работает:
<html>
<head>
<title>generator</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script>
$(document).ready(function() {
jQuery.getJSON(
"http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json&jsoncallback=?",
function(data){
$("#test").text(data.generator);
}
);
});
</script>
</head>
<body>
JSON
<div id="test"></div>
</body>
</html>