Skip to content

Instantly share code, notes, and snippets.

@yoko
Created January 9, 2009 09:35
Show Gist options
  • Save yoko/45072 to your computer and use it in GitHub Desktop.
Save yoko/45072 to your computer and use it in GitHub Desktop.
$('<img/>').randImage(['a.png', 'b.png', 'c.png']);
(function($) {
$.fn.randImage = function(images) {
var length = images.length;
return this.each(function() {
var n = Math.floor(Math.random() * length);
this.src = images[n];
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment