en.javascript.info/2-ui/2-events/01-introduction-browser-events/01-hide-other/source.view/index.html
Ilya Kantor ab9ab64bd5 up
2017-03-21 14:41:49 +03:00

19 lines
231 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>
/* your code */
</script>
</body>
</html>