

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML DOM Anchor Object
The <a> element is used in HTML to create hyperlinks along with href attribute. The anchor object represents this <a> element.
Example
In the below example, we will learn how to access an anchor object −
<!DOCTYPE html> <html> <body> <h2>Demo Heading</h2> <a href="https://google.com" id = "myid" >Google</a><br><br> <button onclick="display()">Display the link</button> <p id="demo">Link gets displayed here</p> <script> function display() { var a = document.getElementById("myid").href; document.getElementById("demo").innerHTML = a; } </script> </body> </html>
Output
This will produce the following output −
- Related Questions & Answers
- HTML DOM Anchor Collection
- HTML DOM Anchor protocol Property
- HTML DOM Anchor password Property
- HTML DOM Anchor pathname Property
- HTML DOM Anchor href Property
- HTML DOM Anchor origin Property
- HTML DOM Anchor port Property
- HTML DOM Anchor hreflang Property
- HTML DOM Anchor download Property
- HTML DOM Anchor hash Property
- HTML DOM Anchor rel Property
- HTML DOM Anchor search Property
- HTML DOM Anchor target Property
- HTML DOM Anchor text Property
- HTML DOM Anchor type Property
Advertisements