Open In App

What does javascript:void(0) mean?

Last Updated : 23 Jan, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

You might have occasionally came across “javascript:void(0)” in an HTML Document. It is often used when inserting an expression in a web page might produce some unwanted effect. To remove this effect, “javascript:void(0)” is used. This expression returns undefined primitive value. This is often used with hyperlinks. Sometimes, you will decide to call some JavaScript from inside a link. Normally, when you click a link, the browser loads a brand new page or refreshes the same page (depending on the URL specified). But you most likely don’t desire this to happen if you have hooked up some JavaScript thereto link. To prevent the page from refreshing, you could use void(0). 

Using “#” in anchor tag: When writing the following code in the editor, the web page is refreshed after the alert message is shown. 

Example: 

html




<h1 style="color:green">GeeksforGeeks</h1>
<h3>without JavaScript:void(0)</h3>
<a href="#" ondblclick="alert('Welcome to Geeks for Geeks')">
    Double click on me </a>
<a href="#" ondblclick="geeks()">
    Double click on me
</a>
<script>
    function geeks(){
    document.getElementById("gfg")
        .innerHTML='Welcome to GeeksforGeeks';
    }
</script>
<p id="gfg"></p>


Output: 

What does javascript:void(0) mean?

What does javascript:void(0) mean?

Using “javascript:void(0);” in anchor tag: Writing “javascript:void(0);” in anchor tag can prevent the page to reload and JavaScript functions can be called on single or double clicks easily.

Example: 

html




<h1 style="color:green">GeeksforGeeks</h1>
<h3>JavaScript:void(0)</h3>
<a href="javascript:void(0);" ondblclick="geek()">
    Double click on me </a>
<p id="gfg">
</p>
<script>
    function geek() {
        document.getElementById("gfg").innerHTML = "Welcome to GeeksforGeeks";
    }
</script>


Output: 

What does javascript:void(0) mean?

What does javascript:void(0) mean?



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads