Answers for "check if body has class jquery"

19

jquery hasclass

if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}
Posted by: Guest on July-01-2020
6

detect if an element has a class jQurey

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

jquery hasclass

$( "#mydiv" ).hasClass( "foo" )
Posted by: Guest on March-26-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
3

jquery hasclass

jQuery(Selector).hasClass('class_name');
Posted by: Guest on July-08-2020

Code answers related to "check if body has class jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language