Advertisement
ndugger

Untitled

Nov 9th, 2011
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <div id="options">
  2. <a href="javascript:parentAccordion.pr(1)">Exand All</a> | <a href="javascript:parentAccordion.pr(-1)">Collapse All</a>
  3. </div>
  4. <ul class="acc" id="acc">
  5.  
  6. <li>
  7. <h3>Tutorials</h3>
  8. <div class="acc-section">
  9. <div class="acc-content">
  10. There are currently no tutorials. Please check back soon!
  11. </div>
  12. </div>
  13. </li>
  14.  
  15. <li>
  16. <h3>Web Templates</h3>
  17. <div class="acc-section">
  18. <div class="acc-content">
  19. There are currently no templates. Please check back soon!
  20. </div>
  21. </div>
  22. </li>
  23.  
  24. <li>
  25. <h3>Links</h3>
  26. <div class="acc-section">
  27. <div class="acc-content">
  28. There are currently no links. Please check back soon!
  29. </div>
  30. </div>
  31. </li>
  32.  
  33. </ul>
  34.  
  35.  
  36.  
  37.  
  38. <script type="text/javascript" src="script.js"></script>
  39. <script type="text/javascript">
  40. var parentAccordion=new TINY.accordion.slider("parentAccordion");
  41. parentAccordion.init("acc","h3",0,-1);
  42.  
  43. var nestedAccordion=new TINY.accordion.slider("nestedAccordion");
  44. nestedAccordion.init("nested","h3",1,-1,"acc-selected");
  45. </script>
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement