Skip to content

guilhermechapiewski/jquery-meme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

jQuery Meme

A JQuery plugin to consume Yahoo! Meme’s webservices on YQL.

How to use?

Search posts:

$.meme.search({query:'meme rocks',count:3}, function(data) {
  // do your stuff...
  console.log(data.query.count); //3
  $(data.query.results.post).each(function(index) {
      console.log($(this)[0].caption);
      // ...
  });
});

Get popular posts:

$.meme.popular({count:10}, function(data) {
  // do your stuff...
});

How to report bugs

Go to the Issues section and please provide as much detail as you can.

How to contribute

Contributors are very welcome :) Go ahead and fork the project here on Github and “request pull” when you are done.

Please include unit tests! :)

Mailing list and further questions

If you want to contribute and still have some questions or if you are still having trouble using jquery-meme plugin, join the meme-dev group at Yahoo! Groups where you will find other developers that use Yahoo! Meme and APIs for many programming languages.

What is Meme?

Meme (http://meme.yahoo.com) is a light-blogging tool – which means that it is not as small and simple as Twitter (micro-blogging) and not as big and full-featured as Wordpress (standard blogging) – created by Yahoo! in Brazil.

For more information about Yahoo! Meme please go to:

About

JQuery plugin for Yahoo! Meme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published