diff options
Diffstat (limited to 'wk8')
-rw-r--r-- | wk8/pset/trivia/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wk8/pset/trivia/index.html b/wk8/pset/trivia/index.html index 456c7f3..5b01a99 100644 --- a/wk8/pset/trivia/index.html +++ b/wk8/pset/trivia/index.html @@ -7,8 +7,8 @@ <title>Trivia!</title> <script> // TODO: Add code to check answers to questions - document.querySelector('button').addEventListener('click', function(event) { - + document.querySelector('#answer1').addEventListener('click', function(event) { + }); </script> @@ -23,7 +23,7 @@ <h2>Part 1: Multiple Choice </h2> <hr> <h3>QUESTION?</h3> - <button>answer1</button> + <button>#answer1</button> <button>answer2</button> <button>answer3</button> </div> |