Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Class notes

Best j Query Fundamentals book

Rating
-
Sold
-
Pages
21
Uploaded on
24-01-2025
Written in
2023/2024

jQuery Basics: A fast, lightweight JS library for DOM manipulation, events, animations, and AJAX. Selectors: Use $() to select elements (e.g., $('#id'), $('.class')). Events: Handle user actions with methods like .click(), .hover(), .on(). DOM Manipulation: Modify HTML and CSS with .html(), .css(), .text(), .append(), .remove(). Animations: Effects like .fadeIn(), .fadeOut(), .slideUp(), .animate(). AJAX: Fetch data asynchronously using $.ajax(), $.get(), $.post(). Chaining: Combine multiple methods in one statement, e.g., $('#id').fadeOut().css(). Callbacks: Functions to run after an action, e.g., .fadeIn(callback). Deferred: Manage asynchronous operations using promises with $.Deferred(). Plugins: Extend jQuery with external features, like datepicker() from jQuery UI. Event Delegation: Efficient event handling for dynamically added elements using .on(). Traversing: Navigate the DOM with .parent(), .children(), .siblings().

Show more Read less
Institution
Course

Content preview

2. jQuery Fundamentals


jQuery:
jQuery is a fast and concise JavaScript Library created by John Resig in 2006 with a
nice motto: Write less, do more.

jQuery simplifies HTML document traversing, event handling, animating, and Ajax
interactions for rapid web development. jQuery is a JavaScript toolkit designed to simplify
various tasks by writing less code.

Advantages of jQuery:
 DOM manipulation − The jQuery made it easy to select DOM elements, negotiate
them and modifying their content by using cross-browser open source selector
engine called Sizzle.

 Event handling − The jQuery offers an elegant way to capture a wide variety of
events, such as a user clicking on a link, without the need to clutter the HTML code
itself with event handlers.

 AJAX Support − The jQuery helps you a lot to develop a responsive and featurerich
site using AJAX technology.

 Animations − The jQuery comes with plenty of built-in animation effects which you
can use in your websites.

 Lightweight − The jQuery is very lightweight library - about 19KB in size (Minified and
gzipped).

 Cross Browser Support − The jQuery has cross-browser support, and works well in IE
6.0+, FF 2.0+, Safari 3.0+, Chrome and Opera 9.0+

 Latest Technology − The jQuery supports CSS3 selectors and basic XPath syntax.

There are two ways to use jQuery.

 Local Installation − You can download jQuery library on your local machine and
include it in your HTML code.

 CDN Based Version − You can include jQuery library into your HTML code directly
from Content Delivery Network (CDN).



1 Prepared By:
Prof. Chirag Prajapati – SDJ International College, Vesu, Surat

,Local installation:

 Go to the https://jquery.com/download/ to download the latest version available.

 Now put downloaded jquery-2.1.3.min.js file in a directory of your website, e.g.
/jquery.

Example:

<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript" src =
"/jquery/jquery-2.1.3.min.js">
</script>

<script type = "text/javascript">
$(document).ready(function() {
document.write("Hello, World!");
});
</script>
</head>

<body>
<h1>Hello</h1>
</body>
</html>


CDN Based Version:

You can include jQuery library into your HTML code directly from Content Delivery
Network (CDN). Google and Microsoft provides content deliver for the latest version.

Example:

<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src =
"https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.m
in.js">
</script>

<script type = "text/javascript">
$(document).ready(function() {
document.write("Hello, World!");
});

2 Prepared By:
Prof. Chirag Prajapati – SDJ International College, Vesu, Surat

, </script>
</head>

<body>
<h1>Hello</h1>
</body>
</html>


jQuery Selectors:
A jQuery Selector is a function which makes use of expressions to find out matching
elements from a DOM based on the given criteria.

Simply you can say, selectors are used to select one or more HTML elements using jQuery.
Once an element is selected then we can perform various operations on that selected
element.

jQuery selectors start with the dollar sign and parentheses − $(). The factory function $()
makes use of following three building blocks while selecting elements in a given document


Sr.No. Selector & Description


1 Tag Name
Represents a tag name available in the DOM. For
example $('p') selects all paragraphs <p> in the document.

2 Tag ID
Represents a tag available with the given ID in the DOM. For
example $('#some-id') selects the single element in the document
that has an ID of some-id.

3 Tag Class
Represents a tag available with the given class in the DOM. For
example $('.some-class') selects all elements in the document that
have a class of some-class.




3 Prepared By:
Prof. Chirag Prajapati – SDJ International College, Vesu, Surat

Written for

Institution
Course

Document information

Uploaded on
January 24, 2025
Number of pages
21
Written in
2023/2024
Type
Class notes
Professor(s)
Chiragbhai prajapati
Contains
All classes

Subjects

$3.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
kachhadiyashyam99

Get to know the seller

Seller avatar
kachhadiyashyam99 Veer Narmad South Gujarat University
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
1 year
Number of followers
0
Documents
3
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions