12 lines
174 B
Markdown
12 lines
174 B
Markdown
importance: 5
|
|
|
|
---
|
|
|
|
# Hide self
|
|
|
|
Create a button that hides itself on click.
|
|
|
|
```online
|
|
Like this:
|
|
<input type="button" onclick="this.hidden=true" value="Click to hide">
|
|
```
|