Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <div id="accordion">
  2. <h3 id="header1" class="accClicked"><a href="#">Section 1</a></h3>
  3. <div> Good Morning Stackoverflow</div>
  4. <h3 id="header2" class="accClicked"><a href="#">Section 2</a></h3>
  5. <div>Buongiorno Stackoverflow</div>
  6. <h3 id="header3" class="accClicked"><a href="#">Section 3</a></h3>
  7. <div>Bonjour Stackoverflow</div>
  8. </div>
  9.  
  10. <button id="add">
  11. Add tab
  12. </button>
  13.  
  14. $(function() {
  15. var icons = {
  16. header: "ui-icon-circle-arrow-e",
  17. headerSelected: "ui-icon-circle-arrow-s"
  18. };
  19. $( "#accordion" ).accordion({
  20. icons: icons,
  21. collapsible: true
  22. });
  23. $( "#header1" ).click(function(e) { return false;
  24. $( "#accordion" ).accordion( "option", "icons", false );
  25. });
  26. });
  27.  
  28. $('#accordion .accClicked')
  29. .off('click')
  30. .click(function(){
  31. $(this).next().toggle('fast');
  32. });
  33.  
  34. $('#add').click(function() {
  35. var $tab="<h3 id='header3' class='accClicked'><a href='#'>Section 3</a></h3><div>Bonjour Stackoverflow</div>";
  36. $('#accordion').append($tab);
  37.  
  38. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement