Quantcast
Channel: StuntCoders » jQuery
Viewing all articles
Browse latest Browse all 10

Twitter followers with jQuery

$
0
0

Present your users with Twitter followers widget by using only jQuery. Copy following snippet on your webpage, and test this amazing script, by only replacing stuntsnippets with your username.

1
2
3
4
5
6
7
8
9
10
11
12
13
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://twitter-friends-widget.googlecode.com/files/jquery.twitter-friends-1.0.min.js"></script> 
<script type="text/javascript"> 
	jQuery(document).ready(function(){
		jQuery('#friends').twitterFriends({
			debug:1,username:'stuntsnippets',users:24,user_image:62
		});
	});
</script>
 
<div style="width:520px; height: 190px;"> 
	<div id="friends"></div> 
</div>


stuntSnippets followers

Article with more demos can be found on More Tech Tips. Enjoy it!


Viewing all articles
Browse latest Browse all 10

Trending Articles