YQL og JSON
hey alle!Jeg sidder og er ved at lege lidt med noget YQL, men kan ikke rigtig finde ud af hvad der skulle være galt i nedestående script.. Men kan ihvertfald ikke få vist noget output.. Måske kan i hjælpe?
[code]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<span id="drift">
</span>
<script type="text/javascript">
$(document).ready(function() {
$.getJSON("http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fm.dk%22%20and%0A%20%20%20%20%20%20xpath%3D'%2Fhtml%2Fbody%2Fform%2Fdiv%5B3%5D%2Fdiv%5B3%5D%2Fdiv%2Fdiv%2Fdiv'&format=json&callback=?", function(json) { //get information about the user usejquery from twitter api
$('#drift').text(json.query.result); //get the follower_count from the json object and put it in a span
});
});
</script>
</body>
</html>
[/code]