Ok so I am trying to setup on my site to have 6 of my recent tweets. I am trying to use the .getJSON method and it is just not working.
$.getJSON("http://api.twitter.com/1/statuses/user_timeline/jrock2004.json", function(data) {
$.each(data, function(){
$('<div></div>')
.hide()
.append('<span>' + this.text + '</span>')
.appendTo('#tweets')
.fadeIn();
});
});
Any ideas? I thought maybe it might be easier to try xml as well but I have not tried that. Thanks