[Solved] hide a when Navigation link is Hovered [closed]

You could use JavaScript, something like this: <a href=”#” id=”hoverthis” onmouseover=”document.getElementById(“disappear”).style.display=”none”;”>When you over this, the second div with disappear.</a> <p id=”disappear”>I will disappear when hoverthis is hovered.</p> The script above sets the element (in this case, the p) to make apply the CSS code display:none to the div with the id disappear. You could set … Read more