Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 2, 2014 19:19
Show Gist options
  • Save jlittlejohn/11483780 to your computer and use it in GitHub Desktop.
Save jlittlejohn/11483780 to your computer and use it in GitHub Desktop.
JS: Randomization Plugin
(function($){
$.fn.rand = function(){
return this.eq(Math.floor(Math.random()*this.length));
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment