<

Introduction to jQuery (Part 1)

Posted on
8,053 Points
853 Views
2 Endorsements
Last Modified:
Published
Experience Level: Beginner
5:17
The viewer will learn the basics of jQuery, including how to invoke it on a web page.

Video Steps

1. Reference your jQuery libraries

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

Open in new window

2. Include your new external js/jQuery file

<script src="js/mediasage.js"></script>

Open in new window

3. Write your first lines of code to setup your site for jQuery.

jQuery(document).ready(function($){
});

Open in new window

2
Author:Jason Baker
1 Comment
LVL 11

Comment

by:Mortaza Doulaty
DOM stands for Document Object Model, not Direct Object Model.
1
In programming development, it is very common that a piece of code could be developed, customized, re-used and deployed in many similar areas, so that we can optimize the development and configuration time needed.
In a recent question here at Experts Exchange, a member wants to enhance an AutoHotkey script that performs "Title Case" conversion. The enhancement is to allow specification of words that are excluded from the capitalization (conjunctions and prepo…
Next Video:

Keep in touch with Experts Exchange

Tech news and trends delivered to your inbox every month