23 lines
592 B
HTML
Executable File
23 lines
592 B
HTML
Executable File
<html>
|
|
<head>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>Let's play a game!</p>
|
|
<p>Of hide and seek...</p>
|
|
<p class="easy">I'm easy to find!</p>
|
|
<button id="hidebutton">Great idea</button>
|
|
<button id="revealbutton">Found you!</button>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$("#hidebutton").click(function () {
|
|
$("p").hide();
|
|
});
|
|
$("#revealbutton").click(function () {
|
|
$(".easy").show();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|