

How to Get the Current URL with JavaScript
source link: https://www.laravelcode.com/post/how-to-get-the-current-url-with-javascript
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

How to Get the Current URL with JavaScript
Use the window.location.href
Property
You can use the JavaScript window.location.href
property to get the entire URL of the current page which includes host name, query string, fragment identifier, etc.
The following example will display the current url of the page on click of the button.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Current URL in JavaScript</title>
</head>
<body>
<script>
function getURL() {
alert("The URL of this page is: " + window.location.href);
}
</script>
<button type="button" onclick="getURL();">Get Page URL</button>
</body>
</html>
Author : Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Recommend
-
31
Retrieve the current FireFox URL with python advertisements I want to know what is the current url of active tab in running firefox instance f...
-
8
How to get current url Jquery vanilla Javascript Satinder Singh / January 09, 2021 /
-
8
Get the URL of the Current Displayed Page ...
-
9
-
11
Update current URL's query params non-destructively Couldn't find a modern example of how to upda...
-
7
Get Current Tab URL From Chrome Extension in Go February 02, 2018 Build
-
4
How to get current page URL in PHP 1484 views 2 years ago PHP Use the PHP $_SERVER Superglobal Va...
-
10
Laravel 8 Get Current URL With Parameters 4473 views 9 months ago Laravel Sometimes you might want to find the curr...
-
10
How to Get Current URL in Laravel 2415 views 10 months ago Laravel In blade files or Controllers, you may want to c...
-
11
How to Get Current Location in JavaScript Example 15453 views 2 years ago Javascript In this article, I will sha...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK