File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ This repository contains beginner-friendly JavaScript DOM manipulation tasks. Ea
8484
8585---
8686
87- ### 3️⃣ Show / Hide Paragraph
87+ ### 7️⃣ Show / Hide Paragraph
8888- Click the button to toggle visibility of a paragraph.
8989- ✅ Concepts used:
9090 - ` style.display `
@@ -93,6 +93,27 @@ This repository contains beginner-friendly JavaScript DOM manipulation tasks. Ea
9393
9494---
9595
96+ ### 8️⃣ Live Character Counter
97+ - As you type in the input, character count updates live.
98+ - ✅ Concepts used:
99+ - ` input ` event
100+ - ` textContent `
101+ - DOM events and real-time update
102+
103+ ---
104+
105+ ### 9️⃣ Increase Counter on Every Button Click
106+ - Click the button to increase the counter by 1 on every click.
107+ - Counter starts from ** 0** and updates live on screen.
108+ - ✅ ** Concepts used** :
109+ - ` textContent `
110+ - ` addEventListener `
111+ - DOM element selection
112+ - Variables and Increment (` ++ ` )
113+ - Updating DOM in real-time
114+
115+ ---
116+
96117## 📁 Project Structure
97118
98119```
You can’t perform that action at this time.
0 commit comments