Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Learn How to Build a Website with jQuery
Highest Rated
Rating: 4.5 out of 5(356 ratings)
8,339 students

Learn How to Build a Website with jQuery

Learn jQuery in One Month
Created byOne Month
Last updated 12/2018
English

What you'll learn

  • Use jQuery to create interactive sites
  • Have a better understanding of how JavaScript works
  • Build real-life jQuery projects, using filtering and local storage
  • Use the DOM, and work with an external library

Course content

4 sections44 lectures3h 44m total length
  • Welcome to the Wonderful World of jQuery!3:19

    Glad you could make it! We start with some context about how we'll be approaching JQUERY and what you can use this wonderful API for. 

  • Download All The Things!0:17
  • Go On, Say Hello to the Code2:49
  • Love Me Some Libraries7:53

    1. Resources:


    2. Add the jQuery script tag to our HTML file

    index.html

    <!-- JavaScript --><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

    3. Add Lightbox CSS and JavaScript files

    index.html

    <!-- CSS --><link href="styles.css" rel="stylesheet"><link href="lightbox2-master/dist/css/lightbox.css" rel="stylesheet">

    and 

    <!-- JavaScript --><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script><script src="lightbox2-master/dist/js/lightbox.js"></script>
  • I've Got A Lightbox Where My Heart Used To Be9:28

    1. Continue reading along with Lightbox documentation

    http://lokeshdhakar.com/projects/lightbox2/


    2. Add Lightbox styling to each image

    index.html

    <a href="assets/images/image1.jpg" data-lightbox="image1" data-title="My caption"> <img src="assets/thumbnails/thumbs/thumb1.jpg" alt="Surfing"></a>

    Add this <a> tag to each image on your page, but remember to change the path each time.


    3. Change the data-lightbox name for each image to create a collection.

    index.html

    <a href="assets/images/image1.jpg" data-lightbox="roadtrip" data-title="My caption"> <img src="assets/thumbnails/thumbs/thumb1.jpg" alt="Surfing"></a>


    4. Copy and paste the alt tag to the data-title for each image or create your own.

    index.html

    <a href="assets/images/image1.jpg" data-lightbox="roadtrip" data-title="Surfing"> <img src="assets/thumbnails/thumbs/thumb1.jpg" alt="Surfing"></a>


    5. Add options JavaScript to your page to customize how your images look.

    index.html

    <!-- JavaScript -->...<script> lightbox.option({ 'positionFromTop': 200 })</script>  
  • Challenge: Dream Vacation3:49

    1. Dream Vacation assignment 

    What was the greatest vacation you've ever taken? Or where is somewhere you've always dreamed of going? 

    This challenge is going to focus on customizing your Lightbox to share images of your dream vacation. 

    2. Complete these three challenges 

    1. Choose six of your dream vacation photos from Google Images (or your personal photo library) and replace the current images.
    2. Give it an exciting header, and possibly some additional text describing your dream vacation.
    3. Add one more Lightbox option. Review the Lightbox documentation to see what options are available. 

    NOTE: You don't have to submit your project anywhere on the Udemy version of this course. But if you'd like to share it with us, link it and tag us on twitter @onemonthedu! 

Requirements

  • Some HTML & CSS experience is ideal
  • Fluency in English
  • Come self-driven and motivated to learn!

Description

Do you have a website, but can’t figure out how to make it interactive by adding forms, drop-down menus, or filtering lists? Had a hard time trying to learn jQuery or JavaScript in the past? Feeling totally in the deep end? By learning jQuery with One Month you can easily change that.

One Month jQuery is a series of video lessons and tutorials that show anyone -- even a total beginner -- how to build four real-world projects that you can add to your website. You will learn how to make your website more interactive and engaging using jQuery. 

When you sign up, you immediately get access to a member’s area where you can learn jQuery online and take each lesson at your own pace. Through engaging iQuery tutorials, you’ll learn how to interact with the Document Object Model (DOM), use web developer tools, and get started with reading and understanding documentation to help you take the reins of your own projects -- sounds fancy, huh? We promise that it’s not as complicated as it sounds. Each lesson acts as a jQuery tutorial for beginners as we break everything down along the way making it easier than ever to learn jQuery online.

Who this course is for:

  • Designers who want to get into front-end development
  • Creatives who want to make their own site interactive
  • Anyone with past struggles learning Javascript or jQuery