Header

Cont" />

Header

Cont" />

Header

Cont"/>

How to add data-role="collapsible" in a div container

192 Views Asked by At

How can I add data-role="collapsible" in every div container with class "make_me_collapsible"?

<div class="make_me_collapsible"><h2>Header</h2><p>Content....</p></div>
1

There are 1 best solutions below

2
TheWandererr On

You can add it with the attr() method. Like so:
$(".make_me_collapsible").attr("data-role","collapsible");