Сообщение от timugatu
|
Говорит не хватает ";"
|
Бивас, тест! (с)
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function(){
$('#maplist').click(function(){
var url='http://maps.yandex.ru/?text=Детские+сады&where=&sll=37.73619078845212%2C55.786558591756325&sspn=0.07630348205566406%2C0.025052286112980937&source=catalog&output=json';
url+='?callback=?';
$.getJSON(
url,
{},
function(json,textStatus){
alert(textStatus);
$('#maplist').text(json.vpage.data.businesses.GeoObjectCollection.features);
}
);
})
});
</script>
</head>
<body>
<button id='maplist'>Test</button>
<div id='maplist'></div>
</body>
</html>
У меня пишет
Цитата:
|
Сообщение: Script error
|
Если закоментировать 14-ю строку - скрипт выполняется без ошибок. Но и сообщений никаких калбек-функция не выдает...
Т.е. ответа не получаю...