jQuery Plugin For Displaying Social Network Feeds - beyondsocial.js

File Size: 5.16KB
Views Total: 4037
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin For Displaying Social Network Feeds - beyondsocial.js

Beyond Social is a Jquery plugin to display social network feeds on your webpage. Additionally you can mix various feeds together, but you still have the freedom to treat each of them individually by assigning different templates. By default, the plugin supports tumblr, facebook, pinterest and instagram.

You may also be interested in:

Basic usage:

1. Include jQuery javascript library and jQuery Beyond Social.js script on your web page

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/jquery.beyondsocial.js"></script>

2. Include required mustache.js script for minimal templating with {{mustaches}} in JavaScript

<script src="http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.7.2/mustache.min.js"></script>

3. Create a container for social network feeds

<div id="display"></div>

4. Call the plugin

$('#display').beyondsocial({ 
networks: [{name:'tumblr', id:'beyond-t-s'}] 
});

5. Settings

$('#display').beyondsocial({ 
{
  networks: [{name:     'tumblr' | 'facebook' | 'pinterest' | 'instagram' 
              id:       valid id according to the social network you choose
              template: valid path to your template file
            }, ...],
  maxResults: greater than 0, whole numbers //define how many results should be displayed
  template: valid path to your defaulttemplate file //will be used if no template inside networks is defined
  bulkload: true | false
}
});

About author:

Author: Beyondthestatic

Website: http://www.beyondthestatic.com

Project Homepage: https://github.com/beyondthestatic/jquery.beyondsocial.js


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