jQuery hasAttr checking to see if there is an attribute on an element [duplicate]

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) {
    // ...
}

Leave a Comment