jquery add class from element code example
Example 1: how to add class on the base of has class in jquery
$( "p" ).addClass( "myClass yourClass" );
Example 2: how to add class on the base of has class in jquery
$( "ul li" ).addClass(function( index ) {
return "item-" + index;
});