-
Notifications
You must be signed in to change notification settings - Fork 12
/
uitest.html
22 lines (22 loc) · 860 Bytes
/
uitest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<!--
:copyright: 2011 by Florian Boesch <[email protected]>.
:license: GNU AGPL3, see LICENSE for more details.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="jquery/css/ui-darkness/jquery-ui-1.8.11.custom.css"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="jquery/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="jquery/js/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript">
$(function(){
$('input').button();
});
</script>
</head>
<body>
<input id="radio1" type="radio" name="test"/><label for="radio1">Test</label>
<input id="radio2" type="radio" name="test"/><label for="radio2">Test</label>
</body>
</html>