How to Check for a Hash (#) in a URL using JavaScript

1779 views 2 years ago Javascript

Use the Window.location Property

You can simply use the location property of a window (i.e. window.location) to check whether a URL contain hash (#) or fragment component or not in JavaScript.

Let's take a look at the following example to understand how it basically works:

<script>
if(window.location.hash){
    alert("Fragment component exists");
} else{
    alert("Fragment component doesn't exist");
}
</script>

Author : Harsukh Makwana
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]