This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
The HTMLHyperlinkElementUtils mixin defines utility methods and properties to work with HTMLAnchorElement and HTMLAreaElement. These utilities allow to deal with common features like URLs.
There are no objects of this type, but several objects HTMLAnchorElement and HTMLAreaElement implement it.
Properties
This interface doesn't inherit any property.
- HTMLHyperlinkElementUtils.href
- Is a USVStringcontaining the whole URL.
- HTMLHyperlinkElementUtils.protocol
- Is a USVStringcontaining the protocol scheme of the URL, including the final':'.
- HTMLHyperlinkElementUtils.host
- Is a USVStringcontaining the host, that is the hostname, and then, if the port of the URL is not empty (which can happen because it was not specified or because it was specified to be the default port of the URL's scheme), a':', and the port of the URL.
- HTMLHyperlinkElementUtils.hostname
- Is a USVStringcontaining the domain of the URL.
- HTMLHyperlinkElementUtils.port
- Is a USVStringcontaining the port number of the URL.
- HTMLHyperlinkElementUtils.pathname
- Is a USVStringcontaining an initial'/'followed by the path of the URL.
- HTMLHyperlinkElementUtils.search
- Is a USVStringcontaining a'?'followed by the parameters of the URL.
- HTMLHyperlinkElementUtils.hash
- Is a USVStringcontaining a'#'followed by the fragment identifier of the URL.
- HTMLHyperlinkElementUtils.username
- Is a USVStringcontaining the username specified before the domain name.
- HTMLHyperlinkElementUtils.password
- Is a USVStringcontaining the password specified before the domain name.
- HTMLHyperlinkElementUtils.originRead only
- Returns a USVStringcontaining the origin of the URL, that is its scheme, its domain and its port.
Methods
This interface doesn't inherit any method.
- HTMLHyperlinkElementUtils.toString()
- Returns a DOMStringcontaining the whole URL. It is a synonym forHTMLHyperlinkElementUtils.href, though it can't be used to modify the value.
Specifications
| Specification | Status | Comment | 
|---|---|---|
| WHATWG HTML Living Standard The definition of 'HTMLHyperlinkElementUtils' in that specification. | Living Standard | Initial definition | 
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari | 
|---|---|---|---|---|---|
| Basic support | (Yes) [1] | 22 (22) [3] | No support [2] | No support [2] | No support [2] | 
| usernameandpassword | (Yes) | 26 (26) [3] | No support | ? | ? | 
| origin  | (Yes) | 26 (26) [3] | ? | ? | ? | 
| Feature | Android Webview | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | 
|---|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | 22.0 (22) [3] | No support [2] | No support [2] | No support [2] | 
| usernameandpassword | (Yes) | (Yes) | 26.0 (26) [3] | No support | ? | ? | 
| origin  | (Yes) | (Yes) | 26.0 (26) [3] | ? | ? | ? | 
[1] Starting in Chrome 52, the members of this interface were moved to URL
[2] Though not grouped in a single abstract interface, these methods are directly available on the interfaces that implement it, if this interface is supported.
[3] This mixin was called URLUtils before Firefox 45, and was also implemented to other by other interfaces, like Location. From Firefox 45, the other interfaces implements their own version of the properties and methods they need.
See also
- Interfaces implementing this one: HTMLAnchorElement,HTMLAreaElement