Skip to content

Instantly share code, notes, and snippets.

@bmegod
Created June 14, 2013 19:47
Show Gist options
  • Save bmegod/5784705 to your computer and use it in GitHub Desktop.
Save bmegod/5784705 to your computer and use it in GitHub Desktop.
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>button demo</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body>
<div id="nav">
<input type="radio" id="radio1" name="radio">
<label for="home">Home</label>
<input type="radio" id="radio2" name="radio">
<label for="resume">Resume</label>
<input type="radio" id="radio3" name="radio">
<label for="contact">Contact</label>
</div>
<script>
$( "#radio" ).buttonset();
</script>
<footer>
<ul>
<li>&copy; 2013 by Han Chang.</li>
</ul>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment