There are many snippets on the Internet that show you how to get total Twitter followers of an user, most of them are written in PHP or other server-side script languages. But do you know that we can do that with only pure Javascript by using ajax in jQuery?
Here is the snippet, it’s very simple:
<strong>Rilwis</strong> has <span id="followers"></span> followers.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
$.ajax({
url: 'http://api.twitter.com/1/users/show.json',
data: {screen_name: 'rilwis'},
dataType: 'jsonp',
success: function(data) {
$('#followers').html(data.followers_count);
}
});
});
</script>
Replace the screen_name variable to your Twitter username.
We use the jQuery library from Google CDN and Twitter API to make an ajax call to get user’s details. If the request is success, we update the DOM to show total followers.


5 comments
It works, thanks.
I’ve been looking for this all morning. PERFECT!
Hey thanks, It worked for me. If you change “http” to “https” in the url, it will work much faster.
Hi,
Thanks for sharing. Can I post your article on my website here http://www.sabbirh.com
Please let me know.
Thanks
Sabbir
No problem, you can post on your website, but you HAVE TO put a link to my post.