Answers for "jquery check class in div"

37

jquery hasclass

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

jquery check if has class

if ($("#about").hasClass("opened")) {
  $("#about").animate({right: "-700px"}, 2000);
}
Posted by: Guest on November-06-2021
4

jquery hasclass

$( "#mydiv" ).hasClass( "foo" )
Posted by: Guest on March-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language