Posts by Junior Seixas • 61 points
2 posts
-
4
votes1
answer3056
viewsA: Open and close one Collapse at a time
I managed to solve! For the collapses to open so that it comes to hide the other, just insert the following javascritpt function: $("a").click(function() { $("div").removeClass('in'); });…
-
2
votes1
answer3056
viewsQ: Open and close one Collapse at a time
People, the situation is as follows: I have 04 links that when you click on one of them a Collapse appears and presents its respective content. So far so good, the problem is at the time of…