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>