Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to get the value of the type attribute of a link in JavaScript?
To get the value of the type attribute of a link in JavaScript, use the type property. The type attribute is used to tell that the document is html (text/html) or css (text/css), etc.
Example
You can try to run the following code to get the value of the type attribute of a link.
<!DOCTYPE html>
<html>
<body>
<p><a id="anchorid" type="text/html" target= "_blank" href="https://www.qries.com/">Qries</a></p>
<script>
var myVal = document.getElementById("anchorid").type;
document.write("Value of type attribute: "+myVal);
</script>
</body>
</html> Advertisements
