Return to Snippet

Revision: 29691
at August 3, 2010 18:18 by iqwebdev


Initial Code
$.getJSON("http://twitter.com/statuses/user_timeline/username.json?callback=?", function(data) {
     $("#twitter").html(data[0].text);
});

Initial URL


Initial Description
Make sure you change username.json to your actual username and #twitter to the actual selector you wish to update.

Initial Title
Display Last Tweet

Initial Tags
twitter

Initial Language
jQuery