Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Learn jQuery - For Beginners
Rating: 4.5 out of 5(1,022 ratings)
166,449 students

Learn jQuery - For Beginners

Learn to create animated, interactive web pages using jQuery Library
Last updated 4/2019
English
English [Auto],

What you'll learn

  • Embedding jQuery
  • jQuery Syntax, Selector, Class, ID
  • jQuery Events
  • jQuery Mouse Effects
  • jQuery Event Handlers
  • jQuery Animations
  • jQuery Callback and Chaining Functions
  • jQuery Queue Functions
  • jQuery Append & Prepend
  • jQuery Toggle Class

Course content

1 section40 lectures1h 15m total length
  • Introduction to jQuery1:30

    Discover how JavaScript libraries simplify coding by using the jQuery library for DOM and CSS manipulation, effects, animations, and Ajax, and learn why major companies rely on it.

  • Embedding jQuery0:51

    Embed the jQuery library into a web page by loading the latest version from Google's CDN and inserting the script tag in the head of your html.

  • jQuery Syntax and Selector Intro3:32

    Learn how jQuery uses the dollar sign to select elements, nest methods, and run code on document ready. Create a script that hides paragraph text with a button click.

  • jQuery ID Selector1:36

    Master the jQuery id selector by assigning an id to a target element and using #id in your script to hide only that element when a button is clicked.

  • jQuery Class Selector1:07

    Learn jQuery basics by converting an id selector to a class selector, replacing the pound sign with a period to hide the heading, matching the previous exercise.

  • jQuery Other Selectors1:53

    Explore jQuery selectors beyond id and class, including the universal asterisk selector and this selector, and see how to hide elements with the button selector.

  • External jQuery File1:43

    Create a new file named jq_functions.js, paste the function into it, save changes, and call the script from the main HTML document to verify it works.

  • jQuery Events Intro2:04

    Learn how jQuery events respond to user actions on an HTML page, including clicks, hovers, and page loads, and see how a click hides text or double click changes behavior.

  • jQuery Events - mouseenter and mouseleave2:07

    Demonstrates how jQuery mouseenter and mouseleave events trigger alerts as the cursor enters or leaves a paragraph element, using document.ready and an id selector in code.

  • jQuery Events - mousedown and mouseup1:14

    Learn how jQuery handles mousedown and mouseup events to trigger actions, such as alerts, on the element with id p1 when the mouse is pressed and released.

  • jQuery Multiple Event Handlers1:31

    Discover how to attach multiple jQuery events to a paragraph, changing color on mouse enter to yellow, on mouse leave to pink, and on click, via a document ready function.

  • jQuery Hiding-Showing2:08

    Learn jQuery - for beginners shows how to hide and show paragraph text with click events on two buttons, #hidden and #visible, using a 1000 millisecond duration to toggle visibility.

  • jQuery Toggle1:23

    Toggle an element with a toggle button using a click event to hide and show a paragraph over one second (1000 milliseconds), demonstrating the toggle action in jQuery.

  • jQuery Fade In-Out4:08

    Learn to use jQuery to fade in divs on a button click with staggered intervals and the fade out counterpart, by adjusting display none and time delays.

  • jQuery Fade Toggle1:26

    Learn to implement a jQuery fade toggle to show and hide elements with a button. Use fadeToggle for divs and restore display none to keep elements hidden on page load.

  • jQuery Fade To1:19

    Learn to use jQuery’s fadeTo method to fade elements to a target opacity, as four blue square divs demonstrate fading from 20% to 80% over one second.

  • jQuery Slide Down3:05

    Learn jQuery basics for beginners by clicking the top bar to slide down a hidden panel with text, using a 1000 ms animation.

  • jQuery Slide Up0:57

    Use the jQuery slide up method to move an element upward. Remove the display none prop and show the panel on load; clicking the view panel div slides it up.

  • jQuery Slide Toggle0:47

    Learn how to use jQuery slideToggle to switch a panel between slide up and slide down, by updating the script and previewing in the browser.

  • jQuery Animate3:30

    Learn to create custom animations with the jQuery animate method by moving a square from left to right on a start animation click, using absolute positioning and a 1-second duration.

  • jQuery Animate - Multiple Params0:58

    Extend the jQuery animate method by adding multiple parameters to adjust position, opacity, and height; save and preview to see opacity and height toggle to zero.

  • jQuery Animate - Relative Values0:41

    define width and height relative to the element’s current size using the estimate method, scaling or contracting by a relative amount such as 200 pixels, then preview in the browser.

  • jQuery Animate - Queue Functionality1:59

    Learn how to build a sequence of animations with jQuery animate calls using queue functionality. See a square div animated four times, changing height, width, and opacity on click.

  • jQuery Stop Method1:51

    Discover how the jQuery stop method halts animations—sliding, fading, and custom effects—before completion. See practical examples with start and stop buttons controlling a blue square, moving left 800px in 300ms.

  • jQuery Callback Functions2:09

    Understand how jQuery callback functions ensure one action runs after another, preventing simultaneous animations. See an example where hiding an element triggers an alert only after the height animation finishes.

  • jQuery Chaining2:39

    Master jQuery chaining by triggering slide up, color change to red, and slide down on the same element after a button click.

  • jQuery Draggables2:22

    Learn to create draggable elements with jQuery UI, a widget and interaction library built on jQuery, by enabling a blue 150 by 150 div in a document ready script.

  • jQuery Accordian Menu3:18

    Create an accordion menu with jQuery and jQuery UI by placing headings and panels inside a div id accordion and applying the accordion method in document ready to enable expand/collapse.

  • jQuery Get Content - text and html2:41

    Explore jQuery basics by retrieving element content with text and html methods. See how two button clicks reveal the paragraph text as plain text and as html markup via alerts.

  • jQuery Get Content - Val1:06

    Learn to retrieve an input’s value in jQuery with the val() method. Click the Get value button to alert name from an input with id name set to John Smith.

  • jQuery Get Content - attr1:08

    Learn how to use the jQuery attr method to retrieve attribute values, such as a link's href, by clicking a button and displaying the result in an alert.

  • jQuery Set Content - text - html - val2:48

    Explore how to set content with jQuery using text, html, and val methods by wiring three buttons to update text 1, text 2, and the name input.

  • jQuery Set Attributes - attr1:47

    Learn to use the jQuery attr method to set and change an element’s href. A button click updates the link from excel.com to a new url, visible on hover.

  • jQuery Append and Preprend2:33

    Learn how jQuery append and prepend manipulate page content by appending text to a paragraph and adding a new list item to an ordered list via button clicks.

  • jQuery - After and Before1:18

    Learn to use jQuery before and after methods to insert content around an image by clicking two buttons with IDs button1 and button2.

  • jQuery Remove and Empty1:32

    Explore jQuery remove and empty methods that delete elements and their contents. See a button click remove a div and its contents, while empty clears only the element's contents.

  • jQuery Filter Remove1:47

    Click the remove button to delete paragraphs 2, 3, and 4 using jQuery's remove method with filters REM 1 and REM 2.

  • jQuery Add Class2:17

    Learn to use the add class method to apply red to headings and paragraphs and to apply big and red to divs, creating red text and bold, extra large lines.

  • jQuery Remove Class1:52

    Remove a class from h1, h2, and paragraph elements with jQuery by replacing add with remove and updating the button label to reflect the change.

  • jQuery Toggle Class0:44

    Learn to switch between adding and removing classes with the toggle class method, replacing remove class with toggle class, and using the same button for add and remove class events.

Requirements

  • Basic Computer Skills

Description

Course: Learn jQuery - For Beginners
Learn to create animated, interactive web pages using jQuery Library

Take your web development skills to new heights by using jQuery to create animated, interactive web page components using this powerful JavaScript Library.

We begin with the fundamental concepts such as embedding jQuery into documents and basic syntax. We then progress into working with Events, Event handlers, animations, fading, sliding, toggling, hiding and much more. Students will also learn to effectively use Callback functions and chaining methods.

Through a series of hands-on exercises students will create draggable layers, accordion menus and fully animated web interfaces. Many other jQuery attributes, filters and classes are also explored.

What you'll learn - Overview:

  • Embedding jQuery

  • jQuery Syntax, Selector, Class, ID

  • jQuery Events

  • jQuery Mouse Effects

  • jQuery Event Handlers

  • jQuery Animations

  • jQuery Callback and Chaining Functions

  • jQuery Queue Functions

  • jQuery Append & Prepend

  • jQuery Toggle Class

Key Concepts:

  • Intro to jQuery

  • Embedding jQuery

  • jQuery Syntax and Selector Intro

  • jQuery ID Selector

  • jQuery Class Selector

  • jQuery Other Selectors

  • External jQuery File

  • jQuery Events Intro

  • jQuery Events - mouseenter and mouseleave

  • jQuery Events - mousedown and mouseup

  • jQuery Multiple Event Handlers

  • jQuery Hiding-Showing

  • jQuery Toggle

  • jQuery Fade In-Out

  • jQuery Fade Toggle

  • jQuery Fade To

  • jQuery Slide Down

  • jQuery Slide Up

  • jQuery Slide Toggle

  • jQuery Animate

  • jQuery Animate - Multiple Params

  • jQuery Animate - Relative Values

  • jQuery Animate - Queue Functionality

  • jQuery Stop Method

  • jQuery Callback Functions

  • jQuery Chaining

  • jQuery Draggables

  • jQuery Accordian Menu

  • jQuery Get Content - text and html

  • jQuery Get Content - Val

  • jQuery Get Content - attr

  • jQuery Set Content - text - html - val

  • jQuery Set Attributes - attr

  • jQuery Append and Preprend

  • jQuery - After and Before

  • jQuery Remove and Empty

  • jQuery Filter Remove

  • jQuery Add Class

  • jQuery Remove Class

  • jQuery Toggle Class

Who this course is for:

  • Beginner Web Developers who want to learn to Code in jQuery