22 lines
418 B
HTML
22 lines
418 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="button" id="hider" value="Click to hide the text" />
|
|
|
|
<div id="text">Text</div>
|
|
|
|
<script>
|
|
// Here it doesn't matter how we hide the text,
|
|
// could also use style.display:
|
|
document.getElementById('hider').onclick = function() {
|
|
document.getElementById('text').hidden = true;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|