HTML | DOM Location port Property
The HTML DOM Location Port property returns or sets the port number of the current URL.
Syntax:
- Get the port property:
location.port
location.port = 8080
Property Value:
Return Value:
Examples:
<!DOCTYPE html> < html > < body > < h2 >GeeksforGeeks</ h2 > < p id = "demo" ></ p > < p >< b >Note: </ b >If the port number is default (80 for http and 443 for https), most browsers will display 0 or nothing. </ p > < script > const url = document.createElement('a'); url.setAttribute('href', 'http://example.com:12345/gfg'); <!-- accessing "url.port". --> window.alert("The URL port number of the current page is: " + url.port); </ script > </ body > </ html > |
chevron_right
filter_none
Output :
Supported Browsers:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari