Answers for "jquery check if class isnt on page"

CSS
6

detect if an element has a class jQurey

$("#EL_ID").hasClass("CLASS_NAME");
Posted by: Guest on May-14-2020
0

jQuery check if class contains any element

jQuery(function ($) {
	if ($(".className").length == 0) {
		$(".element").removeAttr("style").hide();
	}else{
		$(".element").removeAttr("style").show();
	}	
});
Posted by: Guest on September-07-2021

Code answers related to "jquery check if class isnt on page"

Browse Popular Code Answers by Language