- jQuery is a JavaScript library that simplifies JavaScript programming and makes it easier to use JavaScript on websites.
- To add jQuery, include the jQuery script in the <head> section of an HTML page by linking to the jQuery CDN or downloading the jQuery file.
- jQuery syntax uses the $ sign followed by a selector and an action. For example, $("p").hide() hides all <p> elements.
- Common jQuery methods include hide(), show(), fadeIn(), fadeOut(), and slideUp() to manipulate HTML elements with simple function calls.