HTMLHyperlinkElementUtils
interface HTMLHyperlinkElementUtils {
hash: string;
host: string;
hostname: string;
href: string;
readonly origin: string;
password: string;
pathname: string;
port: string;
protocol: string;
search: string;
username: string;
toString(): string;
}§Properties
§
hash: string
[src]Returns the hyperlink's URL's fragment (includes leading "#" if non-empty).
Can be set, to change the URL's fragment (ignores leading "#").
§
host: string
[src]Returns the hyperlink's URL's host and port (if different from the default port for the scheme).
Can be set, to change the URL's host and port.
§
password: string
[src]Returns the hyperlink's URL's password.
Can be set, to change the URL's password.