Добрый день, делаю виджет для Win7 сам по себе виджет это обычная HTML страничка.
по ссылке:
http://tsw.ru.forexprostools.com/api...6&timeframe=60
возвращается json.
я для теста сделал в блокноте страничку и в ней написал код:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script language="JavaScript">
function Refresh(){
$.get("http://tsw.ru.forexprostools.com/api.php?action=refresher&pairs=2186&timeframe=60",
ParseAnswer(data));
};
function ParseAnswer (data)
{data = $.parseJSON(data); $("#question").text(data.summaryLast); }
</script>
</head>
<body onLoad="Refresh()">
</body>
</html>
Открываю ее в Chrome и получаю в консоли ошибку:
XMLHttpRequest cannot load
http://tsw.ru.forexprostools.com/api...6&timeframe=60. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
Подскажите как правильно сделать?
Вообще цель получить HTML который при открытии отобразит содержимое "summaryLast" и будет каждые 10 секунд обновлять страничку.