All TalkersCode Topics

Follow TalkersCode On Social Media

devloprr.com - A Social Media Network for developers Join Now ➔

JavaScript Get Element By Class

Last Updated : Mar 11, 2024

JavaScript Get Element By Class

In this tutorial we will show you the solution of JavaScript get element by class, here we used getElementsByClassName() method for collect html element by class name.

The getElementsByClassName() method of document interface returns an array-like object of all child elements which have all of the given class names.

When called on the document object, the complete document is searched, including the root node.

Step By Step Guide On JavaScript Get Element By Class :-

Here we defined one div tag with id ‘h’ for access html div element by class name then we appending random text on it by innerHTML.

Here we gets element ‘div’ by class name ‘h’ and stored on variable ‘r’.

As we know getElementsByClassName() is array like object so it had multiple collection behavior so we need to specify with position when we appending text on it that’s way we defined ‘0’ th position and appended text.

We can’t append like getElementById() method each method had some differs.

<!DOCTYPE html>
<html>
    <head>
        <title>GET ELEMENT BY CLASS</title>
    </head>
    <body>
        <div class="h"></div>
        <script>
                const r=document.getElementsByClassName('h');
                r[0].innerHTML="Hi Everyone!";
                console.log(r);
        </script>
    </body>
</html>
  1. <!DOCTYPE html> tag which is instruct the web browser about what version of HTML file written in and it’s not have any ending tag.
  2. The<html> tag is used to indicate the beginning of HTML document.
  3. As above shown <head> tag is contain information about webpage and external file links are declared here. <title> tag is used for set the webpage title.
  4. Both <head> and <title> tags having their pair end tag, so we need to close the ending tags respectively. If you’re not closed anyone of ending tag properly that is also affect the webpage result.
  5. <body> tag is beginning of main coding part because it contain coding of entire website blocks and elements described here.
  6. Here div tag we defined with id attribute ‘h’. In script we defined getting html ‘div’ element by id ‘h’ and stored on variable ‘r’ with keyword ‘const’.
  7. As we seen appending text on element with the help of class attribute means we need to specify index or position.
  8. So we specified at ‘0th’ position we appending some text on div element defined in html webpage by innerHTML.
  9. We displayed result as well at script console for see that result we have to use shortcut ‘ctrl+shit+j’. Then panel will open with result at right hand side.
  10. Both </body>,</html> tags closed respectively. </body> tag indicates the end of body, Then </html> tag indicates the end of HTML document.

Conclusion :-

In conclusion now we are able to know how to get html element by class name as well using javascript.

When we executes program on browser we can see the appended message ‘Hi Everyone!’ on webpage and also in console panel. We have seen how to see result on console earlier.

We can also modify that message and also we can add style on div element using class name same as in getElementById() method.

I hope this tutorial on JavaScript get element by class helps you and the steps and method mentioned above are easy to follow and implement.

Author Image About Riya

A recent graduate with a Bachelor of Technology (B.Tech) in Computer Science from India. She is passionate about leveraging technology to solve real-world problems. With a strong foundation and experience in programming languages such as Python, Django, HTML, CSS, and JavaScript, java, php and have honed her skills through hands-on projects and coursework.

Follow Riya On Linkedin 🡪