Hey
I'm trying to include list of my followers on my site. Here's my code:
$.getJSON('http://twitter.com/statuses/followers.json?screen_name=username',function(data){
alert(data);
});
However, nothing happens. No errors, other js still works, just this doesn't work. What is wrong?
Martti Laine
Ps. I'm using jQuery for this, as page loads faster, when not using php. Content is shown faster.