source: tapas/web/resources/js/library/jquery-ui-1.8.16.custom/development-bundle/demos/button/radio.html @ 416

Last change on this file since 416 was 416, checked in by vmipsl, 12 years ago

User : ajout laboratoire & pays
BO : idem
Création compte : idem
DataProtocole?
Clean accent properties
Language

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