Answers for "how can i tell if an object is hidden or shown in js?"

8

check if element is visible

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

if($('#Div').is(':visible')){
	// add whatever code you want to run here.
}

$('#yourDiv:visible').callYourFunction();
Posted by: Guest on July-21-2020

Code answers related to "how can i tell if an object is hidden or shown in js?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language