From 4198b62759ee04e8d9947833d46fe7dac7edf86d Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Fri, 3 Dec 2021 14:22:43 +0530 Subject: [PATCH] restructured --- Chapter 11/Exercise_11.7.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Chapter 11/Exercise_11.7.html b/Chapter 11/Exercise_11.7.html index 2da5360..a667940 100644 --- a/Chapter 11/Exercise_11.7.html +++ b/Chapter 11/Exercise_11.7.html @@ -17,23 +17,23 @@ in1.addEventListener("change", (e) => { console.log("change"); updater(in1.value); - }) + }); in1.addEventListener("blur", (e) => { console.log("blur"); - }) + }); in1.addEventListener("focus", (e) => { console.log("focus"); - }) + }); in2.addEventListener("change", (e) => { console.log("change"); updater(in2.value); - }) + }); in2.addEventListener("blur", (e) => { console.log("blur"); - }) + }); in2.addEventListener("focus", (e) => { console.log("focus"); - }) + }); function updater(str) { output.textContent = str; }