From 8ed5c40bfb055696c02c4bfa1da2b223370e0761 Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Wed, 31 Dec 2008 00:38:04 +0000 Subject: [PATCH] demos/accordion/default.html: highlighted note about when not to use accordion --- demos/accordion/default.html | 16 ++++++++++------ demos/index.html | 1 + 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/demos/accordion/default.html b/demos/accordion/default.html index 478a25844..dc1a7f2f7 100644 --- a/demos/accordion/default.html +++ b/demos/accordion/default.html @@ -59,13 +59,17 @@

This is a default accordion which is an expandable/collapsible content pane that is useful for situations when content must be displayed within limited space and can be broken into logical sections, much like tabs. Sections open when clicked by default. The HTML code is a series of headers (H3) and content divs so the content is still usable without Javascript.

-

If you are looking for a widget that allows more than one content panel to be open, don't use this plugin. You can achieve this effect with a few lines of jQuery instead, like this:

- -
jQuery(document).ready(function(){
-	$(".accordion .head").click(function() {
-		$(this).next().toggle();
-	}).next().hide();
+
+

+ +Note: If you are looking for a widget that allows more than one content panel to be open, don't use this plugin. You can achieve this effect with a few lines of jQuery instead, like this: +

jQuery(document).ready(function(){
+    $(".accordion .head").click(function() {
+        $(this).next().toggle();
+    }).next().hide();
 });
+

+
diff --git a/demos/index.html b/demos/index.html index ced365db9..4d13e0ce5 100644 --- a/demos/index.html +++ b/demos/index.html @@ -3,6 +3,7 @@ jQuery UI Demos +