Gerrit-Jan Linker
|
Sample code to integrate tweets in a HTML page The following code can be used to include tweets on a website. Replace username in the code with your twitter account name. <html> <body> <div id="twitter_div"><ul id="twitter_update_list"><li> </li></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/username.json?callback=twitterCallback2&count=10"></script> </body> </html>
|