Recent Articles on jQuery
jQuery is an open source JavaScript library that simplifies the interactions between an HTML/CSS document, or more precisely the Document Object Model (DOM), and JavaScript.Elaborating the terms, jQuery simplifies HTML document traversing and manipulation, browser event handling, DOM animations, Ajax interactions, and cross-browser JavaScript development.
Example:
<!DOCTYPE html>
<html>
<head>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
</script>
<script>
$(document).ready(function () {
$("h2").click(function () {
$(this).hover();
});
});
</script>
</head>
<body>
<center>
<h2 style="color: green;">
GeeksforGeeks
</h2>
</center>
</body>
</html>
Output:

Using jQuery (JS) library on HTML page
There are several ways to start using jQuery on your web site.
- Use the Google-hosted/ Microsoft-hosted content delivery network (CDN) to include a version of jQuery.
- Download own version of jQuery from jQuery.com and host it on own server or local filesystem.
Interview Questions:
- jQuery Interview Questions and Answers | Set-1
- jQuery Interview Questions and Answers | Set-2
- jQuery Interview Questions and Answers | Set-3
Complete Reference:
- jQuery | Selectors Complete Reference
- jQuery | Event Methods Complete Reference
- jQuery | Effects Complete Reference
- jQuery | HTML/CSS Methods Complete Reference
- jQuery | Traversing Complete Reference
- jQuery | AJAX Complete Reference
- jQuery | Properties Complete Reference
- jQuery | Plugins Complete Reference
- jQuery Questions
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.


