aboutsummaryrefslogtreecommitdiffstats
path: root/demos/button
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-03-02 02:44:41 +0000
committerScott González <scott.gonzalez@gmail.com>2010-03-02 02:44:41 +0000
commitc16246f5024ba926250226dc8eee9149aeb401b0 (patch)
treeb518736c26f36103de4d7168e17196254fa16feb /demos/button
parent602576707e988c474616ac1dfbcd6a7f8bdce047 (diff)
downloadjquery-ui-c16246f5024ba926250226dc8eee9149aeb401b0.tar.gz
jquery-ui-c16246f5024ba926250226dc8eee9149aeb401b0.zip
Button demo: Fixed duplicate id.
Diffstat (limited to 'demos/button')
-rw-r--r--demos/button/radio.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/button/radio.html b/demos/button/radio.html
index 30f18f455..5659a395d 100644
--- a/demos/button/radio.html
+++ b/demos/button/radio.html
@@ -10,7 +10,7 @@
<link type="text/css" href="../demos.css" rel="stylesheet" />
<script type="text/javascript">
$(function() {
- $("#radio1").buttonset();
+ $("#radio").buttonset();
});
</script>
<style>
@@ -22,7 +22,7 @@
<div class="demo">
<form>
- <div id="radio1">
+ <div id="radio">
<input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice 2</label>
<input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>