JQuery Accordion: disable extension when clicking title, assign link

Is there a way to disable section extension from clicking a header and instead assign functionality to the link included in the header? The idea is for the button to the left of the title to expand and collapse the title. I hope that this will allow me to include in the header other elements that could be clicked without expanding / collapsing. Thanks!

+6
source share
4 answers

Here is a way to do it. Basically, I initialize the accordion with the disable option and click event click that first enable the accordion, then make the accordion and finally disconnect the accordion.

HTML:

 <div class="demo"> <div id="accordion"> <h3> <a href="#">Section 1</a> <a href="#" data-index="0" class="trigger">Expand this</a> </h3> <div> <p> Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate. </p> </div> <h3> <a href="#">Section 2</a> <a href="#" data-index="1" class="trigger">Expand this</a> </h3> <div> <p> Sed non urna. Donec et ante. Phasellus eu ligula. Vestibulum sit amet purus. Vivamus hendrerit, dolor at aliquet laoreet, mauris turpis porttitor velit, faucibus interdum tellus libero ac justo. Vivamus non quam. In suscipit faucibus urna. </p> </div> <h3> <a href="#">Section 3</a> <a href="#" data-index="2" class="trigger">Expand this</a> </h3> <div> <p> Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis. Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui. </p> <ul> <li> List item one </li> <li> List item two </li> <li> List item three </li> </ul> </div> <h3> <a href="#">Section 4</a> <a href="#" data-index="3" class="trigger">Expand this</a> </h3> <div> <p> Cras dictum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia mauris vel est. </p> <p> Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. </p> </div> </div> </div> 

JavaScript:

 $(function() { $("#accordion").accordion({ disabled: true }); $(".trigger").click(function() { $("#accordion").accordion("enable").accordion("activate", parseInt($(this).data("index"), 10)).accordion("disable"); }); }); 
+8
source

You can simply specify your title element :

 $( ".selector" ).accordion({ header: 'h3' }); 
+3
source

It’s best to untie the click handler:

  $(function () { $("#accordionId").accordion({ collapsible: true, active: false, animate: 0, icons: false }); $(".ui-accordion-header").unbind('click').click(function() { alert('dsds'); }); }); 
+1
source

As above.
If you use only one accordion or have the same functionality / interface, I would usually edit the actual java script file

eg. jquery.accordion

I would edit the default settings at the bottom of the file from the header: "a" to "header": "acc-heading" "

0
source

Source: https://habr.com/ru/post/900390/


All Articles