Quantcast
Channel: Blogfreakz - Web Design and Web Development resources » CSS
Viewing all articles
Browse latest Browse all 32

Create A Twitter Timeline Using jQuery And CSS

$
0
0

Have you ever wondered what or how it would look like if you merge Twitter’s UI with that of Facebook’s Timeline? Well, wonder no more because web developer and blogger Karthikeyan K. has already done just that – merged the two to create a Twitter Timeline using jQuery and CSS.

ScreenHunter 1487 Jan. 28 07.35 Create A Twitter Timeline Using jQuery And CSS

In the script he created, he used a JavaScript library called minitwitter.js from webdevdesigner to fetch the Twitter feeds from Twitter’s database. As for the trick to get that Facebook-esque look, that’s where a little bit of CSS comes in.

Below is the jQuery code:

$(document).ready(function(){
//default loading tweets
$('.events').miniTwitter('itzurkarthi');
$(".fetch").click(function() {
 var twitter_username = $("#username").val();
 if(twitter_username != 'Enter twitter username...') {
 $('.events').empty();
 $('.events').miniTwitter(twitter_username);
 $('#tname').html(twitter_username+' timeline');

 } else {
 alert('Enter Twitter Username');
 }
});
});     

Check out his blog for the demo and the download links.

Incoming search terms for the article:


Viewing all articles
Browse latest Browse all 32

Trending Articles