en.javascript.info/02-ui/02-events-and-interfaces/01-introduction-browser-events/01-hide-other/solution/index.html
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

18 lines
352 B
HTML
Executable file

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<input type="button" id="hider" value="Нажмите, чтобы спрятать текст"/>
<div id="hide">Текст</div>
<script>
document.getElementById('hider').onclick = function() {
document.getElementById('hide').style.display = 'none';
}
</script>
</body>
</html>