The HTMLHyperlinkElementUtils.toString()
stringifier
method returns a USVString
containing the whole URL. It is a read-only
version of HTMLHyperlinkElementUtils.href
.
Syntax
string = object.toString();
Examples
// Let's imagine an <a id="myAnchor" href="/en-US/docs/HTMLHyperlinkElementUtils/toString"> element is in the document
var anchor = document.getElementById("myAnchor");
var result = anchor.toString(); // Returns: 'https://developer.mozilla.org/en-US/docs/HTMLHyperlinkElementUtils/toString'
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
- The
HTMLHyperlinkElementUtils
mixin it belongs to.