Skip to content

Instantly share code, notes, and snippets.

@Arsenalist
Created September 27, 2012 04:35
Show Gist options
  • Save Arsenalist/3792185 to your computer and use it in GitHub Desktop.
Save Arsenalist/3792185 to your computer and use it in GitHub Desktop.
Display random tips using jQuery
<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