“jQuery tiene atributo” Código de respuesta

jQuery verifique si existe el atributo

var attr = $(this).attr('name');

// For some browsers, `attr` is undefined; for others,
// `attr` is false.  Check for both.
if (typeof attr !== typeof undefined && attr !== false) {
    // ...
}
LemonzDEV

jQuery si atributo

if ( $('html').attr('lang') == 'fr-FR' ) {
    // do this
} else {
    // do that
}
Ugliest Unicorn

jQuery tiene atributo

var attr = $(this).attr('name');

// For some browsers, `attr` is undefined; for others,
// `attr` is false.  Check for both.
if (typeof attr !== 'undefined' && attr !== false) {
    // ...
}
Tristian Potgieter

Respuestas similares a “jQuery tiene atributo”

Preguntas similares a “jQuery tiene atributo”

Más respuestas relacionadas con “jQuery tiene atributo” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código