|
Project Information
Members
Featured
Downloads
Links
|
Twit is a simple way to display your twitter tweets on a blog/webpage. If you are unfamiliar with jQuery , try Google Gadget.
Quick StartStarting with twit is really easy! Include the script and stylesheets in your document (you will need to make sure the css and js file are on your server, and adjust the paths in the script and link tag) <link href="jquery.twit.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="jquery.twit.js"></script> Only username is required. Username means the screen name. twitter.com/screen name <script type="text/javascript">
$(document).ready(fnction () {
$('#id_of_container').twit(username);
});
</script>
<div id="id_of_container"></div>Release Notes2010-02-17 - 0.2.0Support jQuery1.4 2009-08-31 - 0.1.1Fixed problem where screen name is not clickable. 2009-08-26 - 0.1.0Initial release. |