source: main/trunk/greenstone3/web/interfaces/oran/js/jquery-ui-1.8rc1/demos/button/radio.html@ 24245

Last change on this file since 24245 was 24245, checked in by sjb48, 13 years ago

Oran code for supporting format changes to document.

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1<!doctype html>
2<html lang="en">
3<head>
4 <title>jQuery UI Button - Radio Buttons demo</title>
5 <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
6 <script type="text/javascript" src="../../jquery-1.4.1.js"></script>
7 <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
8 <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
9 <script type="text/javascript" src="../../ui/jquery.ui.button.js"></script>
10 <link type="text/css" href="../demos.css" rel="stylesheet" />
11 <script type="text/javascript">
12 $(function() {
13 $("#radio1").buttonset();
14 });
15 </script>
16 <style>
17
18 </style>
19</head>
20<body>
21
22<div class="demo">
23
24 <form>
25 <div id="radio1">
26 <input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
27 <input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
28 <input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
29 </div>
30 </form>
31
32</div><!-- End demo -->
33
34
35
36<div class="demo-description">
37
38<p>A set of three radio buttons transformed into a button set.</p>
39
40</div><!-- End demo-description -->
41
42
43
44</body>
45</html>
Note: See TracBrowser for help on using the repository browser.