Answers for "if control has class jquery"

19

jquery hasclass

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

how to add class on the base of has class in jquery

$( "ul li" ).addClass(function( index ) {
  return "item-" + index;
});
Posted by: Guest on October-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language