collapse uncollapse jquery

Solutions on MaxInterview for collapse uncollapse jquery by the best coders in the world

showing results for - "collapse uncollapse jquery"
Lisa
31 Apr 2017
1.collapse('toggle')
2//Toggles a collapsible element to shown or hidden. Returns to the caller before the collapsible element has actually been shown or hidden (i.e. before the shown.bs.collapse or hidden.bs.collapse event occurs).
3
4.collapse('show')
5//Shows a collapsible element. Returns to the caller before the collapsible element has actually been shown (i.e. before the shown.bs.collapse event occurs).
6
7.collapse('hide')
8//Hides a collapsible element. Returns to the caller before the collapsible element has actually been hidden (i.e. before the hidden.bs.collapse event occurs).
9
10.collapse('dispose')