Skip to content

ryanmarc/jquery.instagram.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

####
This is a basic jquery plugin that will allow you to pull in an instagram feed.

The user data for the uploader of the image is attached to the image in the jquery data.  
You can access it by using $('#id').data('user')

Alternate image sizes are available as well as caption data.  They are attached to the image element 
that is created.

To get altImageSizes object use var altImages = $('#me_0').data('altImageSizes');
To get Caption object use var caption = $('#me_0').data('caption');

*** me_0 is the id of the element you wish to get data for, so this would change for each image.

####

####
USAGE
####

--- getMyStream ---

<div id="me" />

$(document).ready(function() {
	$("#me").instagram('getMyStream', {
		count: 5
	});
});


--- getUserStream ---

<div id="user" />

$(document).ready(function() {
	$("#user").instagram('getStream', {
		count: 5,
		user: 1574083
	});
});


--- getMyLikes ---

<div id="myLikes" />

$(document).ready(function() {
	$("#myLikes").instagram('getMyLikes', {
		count: 5
	});
});

--- getPopularStream ---

<div id="popular" />

$(document).ready(function() {
	$("#popular").instagram('getPopularStream', {
		count: 5
	});
});

--- getStreamByTag ---

<div id="search" />

$(document).ready(function() {
	$("#search").instagram('getStreamByTag', {
		count: 5,
		tag: 'transformers'
	});
});

About

A simple plugin for integrating an instagram feed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%