Locked lesson.
About this lesson
What is jQuery, and why is it important?
Exercise files
Download this lesson’s related exercise files.
Introduction to JQuery.docx59.3 KB Introduction to JQuery - Solution.docx
59.3 KB
Quick reference
Introduction to jQuery
jQuery is a JavaScript library that makes it easier to do common JavaScript tasks.
When to use
Use it when you want to save time and energy while doing common JavaScript actions.
Instructions
jQuery is a very popular JavaScript library.
You can check it out and download it at jQuery.com
If you add the jQuery.js file to your system, you can use it for your web page by writing this line in your head tag section:
<script src="jquery.js"></script>
Make sure to change jquery.js to the name of the file that's on your system.
You can also reference it externally:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
Hints & tips
- jQuery is a JavaScript library
- jQuery makes it easier to do common JavaScript tasks
- Check it out at jQuery.com
Lesson notes are only available for subscribers.