/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$.getJSON("http://twitter.com/statuses/user_timeline/marcgg.json?count=1&callback=?", function(data){ alert("text:" + data[0].text); alert("date:" + data[0].created_at); } );