Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 825 Bytes

File metadata and controls

39 lines (26 loc) · 825 Bytes
title short-title slug page-type browser-compat
HTMLAnchorElement: port property
port
Web/API/HTMLAnchorElement/port
web-api-instance-property
api.HTMLAnchorElement.port

{{ApiRef("HTML DOM")}}

The HTMLAnchorElement.port property is a string containing the port number of the URL. If the URL does not contain an explicit port number, it will be set to ''.

Value

A string.

Examples

Getting the port from an anchor link

// An <a id="myAnchor" href="https://developer.mozilla.org:443/en-US/docs/HTMLAnchorElement"> element is in the document
const anchor = document.getElementByID("myAnchor");
anchor.port; // returns '443'

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • The {{domxref("HTMLAnchorElement")}} interface it belongs to.