Answers for "href javascript void 0"

1

javascript void(0) href

<!DOCTYPE html>
<html>
   <head>
      <title>Understanding JavaScript void(0)</title>
   </head>
   <body>
      <a href="javascript:void(0);" ondblclick="alert('Click it twice!')">Click me not once, but twice.</a>
   </body>
</html>
Posted by: Guest on December-01-2020
0

where use javascript:void(0)

<a href="javascript:void(0)">Link</a>
Posted by: Guest on January-07-2021
3

href javascript void

The void operator evaluates the given expression and then returns undefined.

The void operator is often used merely to obtain the undefined primitive value,
usually using “void(0)” (which is equivalent to “void 0”). In these cases,
the global variable undefined can be used instead (assuming it has not been
assigned to a non-default value).

An explanation is provided here: void operator.

The reason you’d want to do this with the href of a link is that normally,
a javascript: URL will redirect the browser to a plain text version
of the result of evaluating that JavaScript. But if the result is undefined,
then the browser stays on the same page. void(0) is just a short and 
simple script that evaluates to undefined.
Posted by: Guest on January-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language