summary refs log tree commit diff
path: root/10/question.txt
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-12 07:28:42 +0000
commit9f55046fd65db3effa230eaa2647467e42a0132a (patch)
tree5b46c71db52b6dcaf8107abc3dc19cc93f343a4c /10/question.txt
parentrescue 9 (diff)
downloadhtml-9f55046fd65db3effa230eaa2647467e42a0132a.tar
html-9f55046fd65db3effa230eaa2647467e42a0132a.tar.gz
html-9f55046fd65db3effa230eaa2647467e42a0132a.tar.bz2
html-9f55046fd65db3effa230eaa2647467e42a0132a.tar.xz
html-9f55046fd65db3effa230eaa2647467e42a0132a.zip
rescue 10
Diffstat (limited to '10/question.txt')
-rw-r--r--10/question.txt38
1 files changed, 38 insertions, 0 deletions
diff --git a/10/question.txt b/10/question.txt
new file mode 100644
index 0000000..922968d
--- /dev/null
+++ b/10/question.txt
@@ -0,0 +1,38 @@
+Question:
+In this exercise, you used an onclick event handler to call
+each function. Research the addEventListener() method, and
+explain how you would use it instead of an onclick event
+handler to call the functions.
+
+Answer:
+To use addEventListener(), I would replace the HTML onclick
+attributes with ID attributes. I could then use addEventListener()
+in combination with document.getElementById() to run a specific
+function depending on which HTML paragraph is clicked.
+
+HTML:
+<main>
+	<div id="questions">
+		<p id="q1">How can I determine if a baby animal
+		is an orphan?</p>
+		<p id="q2">How can I tell if an animal has
+		rabies?</p>
+		<p id="q3">I found a baby bird that fell from
+		its nest. Will the parents orphan it if I touch it?</p>
+		<p id="q4">How can I volunteer?</p>
+	</div>
+	<div id="answer">
+		<h2>Answer:</h2>
+		<p></p>
+	</div>
+</main>
+
+JS:
+var q1 = document.getElementById("q1");
+q1.addEventListener("click",ans1);
+var q2 = document.getElementById("q2");
+q2.addEventListener("click",ans2);
+var q3 = document.getElementById("q3");
+q3.addEventListener("click",ans3);
+var q4 = document.getElementById("q4");
+q4.addEventListener("click",ans4);