Answers for "javascript:void in a href"

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
5

javascript void link

<a href="javascript:void(0)">Link title</a>
<!--Quick copy paste : href="javascript:void(0)" -->
Posted by: Guest on July-17-2020

Browse Popular Code Answers by Language