To view a fully working demo and get the sample code, click here!
#2 – jQuery Twitter Updates
Ever wanted your twitter tweets to display on your website without having much programming language knowledge? Well now you can! (Pause here a sec, this sounds like a darn infomercial!)
With the jTwitter jQuery plugin, you can now easily display your Twitter or another twitter feed’s tweets.
Here is a basic example on how to initiate the plugin in your script:
CODE
<script src="/internet-marketing-blog/jquery.js"></script>
<script src="/internet-marketing-blog/jquery.jtwitter.js"></script>
<script>
// Defaults to 5 latest posts
$.jTwitter('gofishcc', function(posts){
//Callback function with the user data
});
</script>
/CODE
You can also specify the number of posts you want to be fetched:
CODE
<script type="text/javascript" src="/internet-marketing-blog/jquery.js"></script>
<script src="/internet-marketing-blog/jquery.jtwitter.js"></script>
<script>
// Let get 10 posts instead of the default 5
$.jTwitter('gofishcc', 10, function(posts){
//Callback function with the user data
});
</script>
/CODE
This is really easy to implement and after changing you stylesheets a bit you can make it blend in perfectly with your current web site.
To view a fully working demo and an example, click here
So, what now? Nothing here for Facebook? To view my blog on how to add a facebook like button to your website, click here.
You can also add other facebook plugins, like a Facebook activity feed, Like box, Friends Pile and more…Check out Facebook’s Plugin Site here.
Here are2 fun things you can do to enhance your website’s social section.

