How to integrate Twitter like plugin in website ?


twitter

Hi

If we have to integrate Twitter like plugin in website. Then we can integrate like this.

Step 1: Download the jquery.followbox.min.js plugin
Step 2: Give the UserId of your twitter Account

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
       <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>

    <link href="followbox.css" rel="stylesheet" type="text/css" />
    <script src="jquery.followbox.min.js" type="text/javascript"></script>
    <script type="text/javascript">
   $(function(){
   $('#mytwitterfollowbox').followbox({
       user: 'Chandradev819'
   });
   });
   </script>
</head>
<body>
    <form id="form1" runat="server">
   <div id="mytwitterfollowbox" class="follow-box-container"></div>
    </form>
</body>
</html>


.

You can download the code from here.

Advertisement

2 thoughts on “How to integrate Twitter like plugin in website ?

  1. Theron Balanoff December 19, 2013 / 7:39 pm

    Do you mind if I quote a couple of your articles as long as I provide credit and sources back to your site?
    My blog site is in the exact same niche as yours and my users would genuinely benefit from
    some of the information you present here.
    Please let me know if this alright with you. Regards!

    • Chandra Dev December 20, 2013 / 5:55 pm

      Hi

      Please do not copy and paste of my artical. You can share my blog artical URL.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.