Baseline Widely available
The port
property of the HTMLAreaElement
interface is a string containing the port number of the <area>
element's href
. If the port is the default for the protocol (80
for ws:
and http:
, 443
for wss:
and https:
, and 21
for ftp:
), this property contains an empty string, ""
.
This property can be set to change the port of the URL. If the URL has no host
or its scheme is file:
, then setting this property has no effect. It also silently ignores invalid port numbers.
See URL.port
for more information.
A string.
Examples Getting the port from an area link// An <area id="myArea" href="https://developer.mozilla.org:443/en-US/docs/HTMLAreaElement"> element is in the document
const area = document.getElementByID("myArea");
area.port; // Returns ''
// Another <area id="myArea" href="https://developer.mozilla.org:8888/en-US/docs/HTMLAreaElement"> element is in the document
const area = document.getElementByID("myArea");
area.port; // Returns:'8888'
Specifications Browser compatibility See also
HTMLAreaElement
interface it belongs to.RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4