















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An overview of jquery, a popular javascript library used for simplifying html document traversing, event handling, animation, and ajax. It covers getting and using jquery, its versions, and its basic functionality. It also introduces selectors and effects.
Typology: Slides
1 / 23
This page cannot be seen from the preview
Don't miss anything!
















What is jQuery? Getting and using jQuery jQuery versions How jQuery works
You must get the jQuery library in one of three ways It’s added automatically as part of an ASP.NET project You can reference the libraries on the Web You can download the library or reference it on the Web
Just use the src attribute to reference the jQuery script file FYI – text/javascript is not necessary because it’s the default scripting language in HTML
There are two variants On that you can read (for development) jQuery.js One without any whitespace (for production) jQuery.min.js
We need a reference to the jQuery Library
My golden rule is that it works much like CSS The syntax is very similar It first selects elements using selectors and then it performs actions on those elements Many of these actions map to common JavaScript actions
We put jQuery inside of the **
All jQuery statements are wrapped in $(document).ready so that the script will not run until the page is completely loaded
Select an element (paragraph) $(“p”).hide(); Select an ID (foo) $(“#foo”).hide(); Select a class (foo) $(“.foo”).hide();
Select all paragraphs with the class intro $(“p.intro”).hide(); Use the “:” after another element to select a specific element from the list (:first, :last, :even, :odd) $(“p.first”).hide(); Use :header to get all header elements $(“:header”).hide();
“:” syntax is also used to get input elements
Optional parameters allow you to control speeds and repetition
An event fires as a result of user action. Your program can handle these events. Conceptually, it’s no different than vb