can't get the twitter status updates from jQuery
- by Bunny Rabbit
why is the code below showing 'got the result null' alertbox ? while the request seems to be sending a proper json.
$(function(){
$.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitterusername', function(data) {
alert('got the result '+data);
});
});