Add Twitter Follow Button from Tweetmeme in Your Blog

Feb 26, 2010 by

Recently tweetmeme has launched follow button for twitter in three different size with different styles this can be used to increase the twitter follower for specific twitter account by using this button on blog or website.The button does not redirects users to profile but it follows the profile using Twitter OAuth.The three different sizes are: standard, compact and square.Below are the three codes for three different sizes of buttons just add the snippet of code below in your blog and the button will be added to the blog.

The standard button:

<script type=”text/javascript”>
tweetmeme_screen_name = ‘yourtwitterusername’;
</script>
<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/follow.js”></script>

The compact button:

<script type=”text/javascript”>

tweetmeme_screen_name = ‘yourtwitterusername’;
tweetmeme_style = ‘compact’;
</script>

<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/follow.js”></script>

The square button:

<script type=”text/javascript”>

tweetmeme_screen_name = ‘yourtwitterusername’;
tweetmeme_style = ‘square’;
tweetmeme_size = ’50′;
</script>

<script type=”text/javascript” src=”http://tweetmeme.com/i/scripts/follow.js”></script>

See how to add retweet counter from tweetmeme in your blog

Add a retweet counter on your blog posts

Replace yourtwitterusername with your default twitter username.

Leave a Comment

*