Parent Directory
|
Revision Log
|
Revision Graph
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 |