Part 1 – Getting Started with jQuery
Includes $(document).ready() setup and basic selectors using
.text(), .html(), and .css().
Task 0 – Setup
- Include jQuery from a CDN.
- Write a
$(document).ready()function. - Print “jQuery is ready!” in the console.
Task 1 – Selectors & CSS
- Select elements by
ID,class, andtag. - Change their content with
.text()and.html(). - Change styles dynamically with
.css().
This is a sample paragraph.