Created
October 22, 2013 09:35
-
-
Save fieke/7097763 to your computer and use it in GitHub Desktop.
Choose random div
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.testimonial > div { | |
display: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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