Answers for "add classes attributes to the body with jquery"

5

addclass jquery

$( "p" ).addClass( "myClass yourClass" );
Posted by: Guest on October-31-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 "add classes attributes to the body with jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language