From 55587ac7cfea23ef57c91f27649a52a735e52369 Mon Sep 17 00:00:00 2001 From: narahari gudagudi Date: Fri, 29 Aug 2025 11:45:40 +0530 Subject: [PATCH] Did Correction in Instrcution (in Excersise) --- 03. DOM/Finished/2. Accessnig the DOM/exercise/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03. DOM/Finished/2. Accessnig the DOM/exercise/app.js b/03. DOM/Finished/2. Accessnig the DOM/exercise/app.js index 1c101ac..4170616 100644 --- a/03. DOM/Finished/2. Accessnig the DOM/exercise/app.js +++ b/03. DOM/Finished/2. Accessnig the DOM/exercise/app.js @@ -1,6 +1,6 @@ // 1. Select element h4 which holds text of "Red" by using getElementsByTagName // 2. Select div with the class of "green" which holds text (Green) by using getElementsByTagName -// 3. Select div with the ID of blue which holds the text "Blue" by using getElementsByClassName +// 3. Select div with the ID of blue which holds the text "Blue" by using getElementsById // 4. Select div which has the class & Id of "yello" by using querySelector() // 5. Select all the elements which has the class of "teal" by using querySelectorAll