From be22dee1daae5570f8c741a027b0212d7e671634 Mon Sep 17 00:00:00 2001 From: Todd Parker Date: Mon, 19 Jan 2009 18:24:50 +0000 Subject: Removed some content from default description and added to overview section on docs wiki instead, --- demos/accordion/default.html | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'demos/accordion') diff --git a/demos/accordion/default.html b/demos/accordion/default.html index d94d41862..b9d74c6c6 100644 --- a/demos/accordion/default.html +++ b/demos/accordion/default.html @@ -59,16 +59,6 @@

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.

-
-

- -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();
-});
-

-- cgit v1.2.3