jquery add class with variable code example
Example 1: how to add class on the base of has class in jquery
$( "p" ).removeClass( "myClass noClass" ).addClass( "yourClass" );
Example 2: how to add class on the base of has class in jquery
$( "p" ).addClass( "myClass yourClass" );