Skip to content

Instantly share code, notes, and snippets.

@fieke
Created October 22, 2013 09:35
Show Gist options
  • Save fieke/7097763 to your computer and use it in GitHub Desktop.
Save fieke/7097763 to your computer and use it in GitHub Desktop.
Choose random div
.testimonial > div {
display: none;
}
$(document).ready(function() {
var list = $(".testimonial > div").toArray();
var elemlength = list.length;
var randomnum = Math.floor(Math.random()*elemlength);
var randomitem = list[randomnum];
$(randomitem).css("display", "block");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment