“jQuery agregar clase” Código de respuesta

jQuery agregar clase

if ($( "#foo" ).hasClass('className')) {
	$( "#foo" ).removeClass( 'className');
} else {
  $( "#foo" ).addClass( 'className');
}
Matteoweb

jQuery agregar clase

$('some_element').addClass('some-class');

// You can add more than one class at one time
$('some_element').addClass('some-class another-class yet-another-class');

// Even thought jQuery allows you to do this
$('some_element').addClass('some-class').addClass('another-class').addClass('yet-another-class');

// That would be really wasteful, think of the planet!
// But more importantly, your RAM
// oh and those poor folks who be viewing your website
Kaotik

jQuery addClass

$( "p" ).removeClass( "myClass noClass" ).addClass( "yourClass" );
Puzzled Peacock

addClass jQuery

$( "p" ).addClass( "myClass yourClass" );

Agregar clase jQuery

$("#my_id").attr("class", "my_new_class_name");
Poseidon

Respuestas similares a “jQuery agregar clase”

Preguntas similares a “jQuery agregar clase”

Más respuestas relacionadas con “jQuery agregar clase” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código