View Single Post
06-14-2009, 12:26 PM
#4
Salathe is offline Salathe
Salathe's Avatar
Status: Community Archaeologist
Join date: Jul 2004
Location: Scotland
Expertise: Software Development
Software: vim, PHP
 
Posts: 3,820
iTrader: 25 / 100%
 

Salathe will become famous soon enough

Send a message via MSN to Salathe

  Old

jQuery will automatically parse the JSON string into a JavaScript object for you to use.

Code:
function get_twitter() {
	$.getJSON("http://twitter.com/statuses/user_timeline/fredkelly.json?count=1&callback=?", function (data){
		// Alert the twitter message only
		alert(data[0].text);
		// Add it to the page (assumes you have an element id "foo")
		document.getElementById("foo").innerHTML = data[0].text;
	});
}

Reply With Quote