Created
September 27, 2012 04:35
-
-
Save Arsenalist/3792185 to your computer and use it in GitHub Desktop.
Display random tips using jQuery
This file contains 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
<html> | |
<head> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<h1>Show Random Tip</h1> | |
<ul id="tips" style="display:none"> | |
<li>Dinner is good for you.</li> | |
<li>Take out the trash.</li> | |
<li>Drink orange juice.</li> | |
<li>Be nice.</li> | |
</ul> | |
<div id="tip"></div> | |
</body> | |
<script> | |
var tips = $("ul#tips li"); | |
var tipIndex = Math.floor(Math.random() * tips.length ); | |
$("#tip").html($(tips[tipIndex]).html()); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment