Firefox Tomorrow

web api instance method

Element: hasAttributes() method

View on MDN ↗

The hasAttributes() method of the Element interface returns a boolean value indicating whether the current element has any attributes or not.

Syntax

hasAttributes()

Parameters

None.

Return value

A boolean.

Examples

let foo = document.getElementById("foo");
if (foo.hasAttributes()) {
  // Do something with 'foo.attributes'
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also