Languages
[Edit]
EN

JavaScript - get attribute name

0 points
Created by:
JoanneSenior
1070

In this article, we would like to show you how to get an attribute's local name using JavaScript​​​​.

Quick solution:

attribute.localName

 

Practical example

In this example, we use the localName property to get the local part of the qualified name of an attribute.

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<body>
  <div id="element-id" class="visible" custom-attribute="value">Example text...</div>
  <script>

    var myElement = document.querySelector('#element-id');

    console.log(myElement.attributes[0].localName);
    console.log(myElement.attributes[1].localName);
    console.log(myElement.attributes[2].localName);

  </script>
</body>
</html>

References

  1. Attr.localName - Web APIs | MDN

Alternative titles

  1. JavaScript - get attribute local name
  2. JavaScript - get attribute localName
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join