/[drupal]/contributions/modules/faq/faq.js
ViewVC logotype

Contents of /contributions/modules/faq/faq.js

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Tue Mar 6 20:08:19 2007 UTC (2 years, 8 months ago) by snpower
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-2, DRUPAL-5--1-2-1, HEAD
Branch point for: DRUPAL-5
File MIME type: text/javascript
DRUPAL-5 branch
1 if (Drupal.jsEnabled) {
2 $(document).ready(function () {
3 $('dd.faq_answer').hide();
4 $("dt.faq_question").click(function() {
5 $(this).next("dd.faq_answer").toggle();
6 });
7
8
9 $('div.faq_qa_hide').hide();
10 $(".faq_qa_header").click(function() {
11 $(this).next("div.faq_qa_hide").toggle();
12 });
13 });
14 }
15

  ViewVC Help
Powered by ViewVC 1.1.2