An open API service indexing awesome lists of open source software.

https://github.com/michaellwest/jquery-picasa

Plugin to simplify the process of accessing images from Google's Picasa
https://github.com/michaellwest/jquery-picasa

Last synced: 6 days ago
JSON representation

Plugin to simplify the process of accessing images from Google's Picasa

Awesome Lists containing this project

README

        

# jQuery Picasa Plugin

This jQuery plugin is designed to simplify the access to Google's Picasa image
gallery.

## Usage

Add these two scripts:



Add this stylesheet:


Add this to the body:


Simple example to retrieve all albums:

var userId = "YOUR_USER_ID";
$('#picasa-gallery').picasa('gallery', userId);

Simple example to retrieve all images for a specified album:

var userId = "YOUR_USER_ID";
var albumId = "YOUR_ALBUM_ID";
$('#picasa-gallery').picasa('gallery', userId, albumId);

## License

Under the same licenses as the jQuery library itself:

## Credits

jQuery picasa is made by Michael West

I got the idea from Lance Pollard who did an excellent job.