treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Twitter

  • Hi, just rewatched the wordpress from scratch part 2 to see how chris puts the twitters in his site, I have got it working but how can i show more than one tweet?
    I have this on the ilnk - 'count=2' but it still only shows 1 tweet.

    <script type=\"text/javascript\">
    $(function(){
    $.getJSON('http://www.twitter.com/status/user_timeline/cbullmedia.json?count=2&callback=?',
    function(data){
    $.each(data, function(index, item){
    $('.twitter').append('<div class=\"tweet\"><p>' + item.text + '</p></div>');
    });
    });
    });
    </script>
  • never mind - it does work