Answers for "if class is visible jquery"

7

jquery see if element is visible

.is(':visible')
//Selects all elements that are visible.

if($('#yourDiv').is(':visible')){
	//do stuff in here
}
//or
$('#yourDiv:visible').callYourFunction();
Posted by: Guest on March-03-2020
0

check if class is active jquery

$('li.menu').hasClass('active');
Posted by: Guest on July-02-2020

Code answers related to "if class is visible jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language