jQuery Plugin For Displaying Multiple Social Feeds On One Page

File Size: 27.8KB
Views Total: 5231
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin For Displaying Multiple Social Feeds On One Page

A simple and easy-to-use jQuery plugin that displays and combines multiple popular social media feeds from a given user on your web page.  This plugin currently supports facebook, twitter and VK. For customizable your social stream display, you can edit the template.html and socialfeed.css to fit your website design.

You may also be interested in:

How to use it:

1. Include jQuery library and other necessary javascript files on your html page

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/jquery.socialfeed.utility.js"></script>
<script src="js/jquery.socialfeed.js"></script>

2. Include socialfeed.css to style your plugin

<link href="css/jquery.socialfeed.css" rel="stylesheet" type="text/css">

3. The html

<div class="social-feed-container"> </div>

4. The javascript

<script>
$(document).ready(function(){
    $('.social-feed-container').socialfeed({
        fb_username:'barack.obama',
        fb_limit:2,
        // YOUR FACEBOOK APP ACCESS TOKEN
        fb_token:'150849908413827|uYDHoXrvPZOLkQ-zRz_XoYdEeYM',
        vk_username:1,
        vk_limit:2,
        tw_limit:2,
        tw_username:'jack',
        length:130,
        cookies:true
    });
});
</script>

This awesome jQuery plugin is developed by unknown. For more Advanced Usages, please check the demo page or visit the official website.