I've been looking around but can't seem to find the information I'm looking for. I suspect the answer is easy enough, but I'm somewhat boggled.
I've used a bit of code provided by Twitter to display my 5 latest tweets on a site. This is what I have: [code] <div id="twitter_div"> <h2 class="sidebar-title">Twitter Updates</h2> <p><a href="http://twitter.com/vavroom" id="twitter-link" style="display:block;text-align:center;">Follow me on Twitter</a></p> <ul id="twitter_update_list" style="list-style:disc;"></ul> </div> <script type="text/javascript" src="http://twitter.com/javascripts/ blogger.js"></script> <script type="text/javascript" src="http://twitter.com/statuses/ user_timeline/vavroom.json?callback=twitterCallback2&count=5"></ script> [/code] This loads the updates in an unordered list (doh). How would I include another user's timeline (say "bozo") in that same list? I'm far from being fluent in j/s, unfortunately. Thank you for any and all help. Nic
