forked from mvolkmann/mvolkmann.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.61 KB
/
Copy pathindex.html
File metadata and controls
46 lines (41 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<title>jQuery UI Button</title>
<link rel="stylesheet" type="text/css"
href="../jquery-ui-1.8.4.custom/css/ui-lightness/jquery-ui-1.8.4.custom.css"/>
<link rel="stylesheet" type="text/css" href="demo.css"/>
<script type="text/javascript" src="../jquery-ui-1.8.4.custom/js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="../jquery-ui-1.8.4.custom/js/jquery-ui-1.8.4.custom.min.js"></script>
<script type="text/javascript" src="demo.js"></script>
</head>
<body>
<h1>jQuery UI Button</h1>
<h3>Buttons</h3>
<button>Plain</button><br/>
<button id="fb">Fancy</button>
<button id="cart">View Cart</button>
<h3>Anchors</h3>
<a href="http://ociweb.com/mark/">Plain</a><br/>
<a id="fa" href="http://ociweb.com/mark/">Fancy</a>
<h3>Checkboxes</h3>
<input id="pc" type="checkbox"/><label for="pc">Plain</label><br/>
<input id="fc" type="checkbox"/><label for="fc">Fancy</label>
<h3>Radio Buttons</h3>
<div id="pr">
<input id="pr1" type="radio" name="color1" checked="checked"/>
<label for="pr1">Red</label>
<input id="pr2" type="radio" name="color1"/>
<label for="pr2">Green</label>
<input id="pr3" type="radio" name="color1"/>
<label for="r3">Blue</label>
</div>
<div id="fr">
<input id="fr1" type="radio" name="color2" checked="checked"/>
<label for="fr1">Red</label>
<input id="fr2" type="radio" name="color2"/>
<label for="fr2">Green</label>
<input id="fr3" type="radio" name="color2"/>
<label for="fr3">Blue</label>
</div>
</body>
</html>