Skip to content

Instantly share code, notes, and snippets.

@wombleton
Created June 15, 2011 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wombleton/1026507 to your computer and use it in GitHub Desktop.
Save wombleton/1026507 to your computer and use it in GitHub Desktop.
The ultimate in jQuery plugins
(function($) {
var index = 0,
words = ['badger', 'badger', 'badger', 'badger', 'badger', 'mushroom']
$.extend({
badger: function() {
return words[index++ % words.length];
}
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment