UsefulLinks
Computer Science
Web Development
Frontend Frameworks and Libraries
jQuery JavaScript Library
1. Introduction to jQuery
2. Core Concepts
3. Selecting Elements
4. DOM Manipulation
5. DOM Traversal
6. Event Handling
7. Effects and Animations
8. AJAX (Asynchronous JavaScript and XML)
9. Advanced Topics
10. jQuery UI
2.
Core Concepts
2.1.
The jQuery Object
2.1.1.
The `$` Alias
2.1.1.1.
Usage and Scope
2.1.1.2.
Avoiding Conflicts with Other Libraries
2.1.2.
Understanding the Wrapper Set
2.1.2.1.
Array-like Structure
2.1.2.2.
Working with Collections of Elements
2.1.3.
Implicit Iteration
2.1.3.1.
Applying Methods to All Matched Elements
2.1.3.2.
Differences from Native JavaScript
2.2.
Method Chaining
2.2.1.
Concept and Benefits
2.2.1.1.
Fluent Interface
2.2.1.2.
Reducing Code Redundancy
2.2.2.
Syntax of Chaining
2.2.3.
Breaking Chains with `.end()`
2.2.3.1.
Use Cases and Examples
2.2.4.
Stack Management
2.2.4.1.
Understanding the jQuery Stack
2.2.4.2.
`.addBack()` Method
Previous
1. Introduction to jQuery
Go to top
Next
3. Selecting Elements