Anchor protocol Property
Example
Return the protocol of a link:
var x = document.getElementById("myAnchor").protocol;
The result of x will be:
http:
Try it yourself »
Definition and Usage
The protocol property sets or returns the protocol part of the href attribute value.
The protocol is a standard that specifies how data are transmitted between computers.
Browser Support
![]()
The protocol property is supported in all major browsers.
Syntax
Return the protocol property:
anchorObject.protocol
Set the protocol property:
anchorObject.protocol=protocol
Property Values
| Value | Description |
|---|---|
| protocol |
Specifies the protocol of a URL. Possible Values:
|
Technical Details
| Return Value: | A String, representing the protocol part of the URL, including the colon sign (:) |
|---|
More Examples
Example
Change the protocol of a link:
document.getElementById("myAnchor").protocol = "mailto:";
Try it yourself »
Related Pages
JavaScript reference: location.protocol Property
Anchor Object

