I want to make an onClick event on the link.
the code:
<a onclick="document.getElementById('myBodyID').style.overflow-y='hidden'" title="my title">Anchor text</a>
Why isn’t this working? I want to disable vertical scrolling when the link is clicked.
How could I fix this code? It is not working at the moment 🙁
Use:
As CSS properties with special characters are camel cased.
You can also use brackets (
document.getElementById('myBodyID').style["overflow-y"]).