In order to know the network protocol (HTTP, HTTPS, FTP, SMTP, SSH, FILE e.t.c) of the current page we can make use of the window.location.protocol object in Javascript,
var urlProtocol = window.location.protocol;
File: pageProtocol.html
<html>
<head>
<title>Get current page Protocol using JavaScript</title>
</head>
<body onload="getCurrentPageProtocol()">
<div id="pageDetails"></div>
<script>
function getCurrentPageProtocol() {
var currPageURL = window.location.protocol;
document.getElementById("pageDetails").innerHTML = "<strong>Current Page Protocol : </strong>" + currPageURL;
}
</script>
</body>
</html>
More Posts related to JavaScript,
- How to Run JavaScript on Mac Terminal
- Get Current time in GMT/UTC using JavaScript
- How to yarn reinstall all Packages
- [javaScript] Convert text case to lowercase
- Get Device Screen Width and Height using javaScript
- Fix - npm start: sh: index.js: command not found
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- JavaScript: Convert an Image into Base64 String
- JavaScript : Get current page address
- How to get query string in JavaScript HTML location.search
- Create React App using npm command with TypeScript
- JavaScript: Count Words in a String
- Add Animated Scrolling to Html Page Title Script
- How to send email from JavaScript HTML using mailto
- Javascript convert text case from uppercase to lowercase
- Submit html form on dropdown menu value selection or change using javascript
- Send Extra Data with Ajax Get or Post Request
- Fix: SyntaxError: The requested module does not provide an export named default
- Examples: Convert String to int in JavaScript
- 10 ways to Convert String to a Number in JavaScript
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- Fix: ReferenceError: require is not defined in ES module scope [Node]
- [JavaScript] Remove all Newlines From String
- How to detect Browser and Operating System Name and Version using JavaScript
More Posts:
- [Solutions] Android Error in an XML file: aborting build. Eclipse SDK - Android
- Bash Command to Find OS Version in Terminal - Bash
- Tool To Add Watermark to Images (100% free, no login required) - Tools
- How to upgrade PowerShell on Mac - Powershell
- Copy entire directory using Terminal Command [Linux, Mac, Bash] - Linux
- How to load zsh profile on opening shell terminal - MacOS
- Working with Bluetooth on Mac Terminal using blueutil Commands - MacOS
- How to delete SNS Topic using AWS CLI - AWS