Languages
[Edit]
EN

JavaScript - getAttributeNode() method example

0 points
Created by:
Aston-Freeman
787

In this article, we would like to show you how to get attribute node using getAttributeNode() method in JavaScript.

Quick solution:

someElement.getAttributeNode(attributeName);

Where:

  • someElement - reference to some element,
  • attributeName - name of the attribute in someElement.

 

Practical example

The example shows how to get attribute node with getAttributeNode method.

// ONLINE-RUNNER:browser;

<!DOCTYPE html>
<html>
  <body>
    <div id="my-div" class="my-class">This is my div.</div>
    <script>

      var myDiv = document.querySelector('#my-div');        // gets element by id
      var attributeNode = myDiv.getAttributeNode('class');  // gets attribute node

      console.log(attributeNode.value);                     // displays node value

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

Alternative titles

  1. JavaScript - get attribute node method example
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