jQuery Introduction (original) (raw)
Last Updated : 26 Jul, 2024
**jQuery is an open-source JavaScript library that simplifies the interactions between an HTML/CSS document, or more precisely the Document Object Model (DOM). jQuery simplifies HTML document traversing and manipulation, browser event handling, DOM animations, Ajax interactions, and cross-browser JavaScript development.
Table of Content
- How to Add jQuery to HTML Page?
- Basic Syntax for jQuery Function
- jQuery Basic Example
- Why jQuery?
- Advantages of Using jQuery in a Project
- Disadvantages of Using jQuery in a Project
- jQuery Introduction - FAQs
The jQuery is the only library available today that meets the needs of both designer types and programmer types. jQuery is widely famous for its philosophy of ****"Write less, do more."** This philosophy can be further elaborated as three concepts:
- Finding some elements (via CSS selectors) and doing something with them (via jQuery methods) i.e. locate a set of elements in the DOM, and then do something with that set of elements.
- Chaining multiple jQuery methods on a set of elements
- Using the jQuery wrapper and implicit iteration
How to Add jQuery to HTML Page?
There are two methods to use jQuery in your HTML page.
1. Using jQuery from CDN Link
The easiest method to include jQuery in your HTML page is by using a CDN link. CDN links hosted the jQuery files to the servers that can be easily used without downloading the files.
Include jQuery CDN link to the HTML page using
`
2. Download the jQuery Files Locally and use Them
Visit the jQuery Official Website and download the latest version of jQuery. Then include the downloaded jQuery file into your project. Place the _jquery.min.js file in a directory within your project, such as js/. Next, use
Hello, World!
<button id="hideButton">
Hide Message
</button>
<!-- jQuery Script -->
<script>
$(document).ready(function() {
$('#hideButton').click(function() {
$('#message').hide();
});
});
</script>
`
**Output:
**Why jQuery?
Some of the key points which support the answer for why to use jQuery:
- It is incredibly popular, which is to say it has a large community of users and a healthy amount of contributors who participate as developers and evangelists.
- It normalizes the differences between web browsers so that you don’t have to.
- It is intentionally a lightweight footprint with a simple yet clever plugin architecture.
- Its repository of plugins is vast and has seen steady growth since jQuery’s release.
- Its API is fully documented, including inline code examples, which in the world of JavaScript libraries is a luxury. Heck, any documentation at all was a luxury for years.
- It is friendly, which is to say it provides helpful ways to avoid conflicts with other JavaScript libraries.
**Advantages of Using jQuery in a Project
- Wide range of plug-ins. jQuery allows developers to create plug-ins on top of the JavaScript library.
- Large development community
- It has a good and comprehensive documentation
- It is a lot more easy to use compared to standard javascript and other javascript libraries.
- JQuery lets users develop Ajax templates with ease, Ajax enables a sleeker interface where actions can be performed on pages without requiring the entire page to be reloaded.
- Being Light weight and a powerful chaining capabilities makes jQuery more strong.
**Disadvantages of Using jQuery in a Project
- While JQuery has an impressive library in terms of quantity, depending on how much customization you require on your website, the functionality may be limited thus using raw javascript may be inevitable in some cases.
- The JQuery javascript file is required to run JQuery commands, while the size of this file is relatively small (25-100KB depending on the server), it is still a strain on the client computer and maybe your web server as well if you intend to host the JQuery script on your own web server.