+ 2
Onclick
How do you make a button disappear once clicked?
2 Answers
+ 1
<button onclick='this.style.display="none";'> Dont click me please </button>
+ 2
Hello, George !
The easiest way to hang an onclick event is to register it directly in the html tag:
<a href="#" onclick="alert( 'Example 1 worked'); return false;"> Example 1</a>
https://www.sololearn.com/learn/JavaScript/2758/?ref=app