Answers for "check if collapse is open"

0

check if collapse is open

//Will return true if uncollapsed
$('#collapseDiv').hasClass('in');

//Will return true if in the process of collapsing
$('#collapseDiv').hasClass('collapsing');

//Will return true if collapsed
$('#collapseDiv').hasClass('collapse');
Posted by: Guest on May-25-2021

Code answers related to "check if collapse is open"

Browse Popular Code Answers by Language