JavaScript & JQuery: The Missing Manual, Second Edition Java Script & J Query 2nd

JavaScript%20%26amp%3B%20jQuery-%20The%20Missing%20Manual%2C%202nd%20Edition

javascript__jquery_the_missing_manual_2nd_edition

User Manual:

Open the PDF directly: View PDF PDF.
Page Count: 538

DownloadJavaScript & JQuery: The Missing Manual, Second Edition Java Script & J Query- 2nd
Open PDF In BrowserView PDF
www.it-ebooks.info

www.it-ebooks.info

JavaScript &
jQuery
The book that should have been in the box

®

www.it-ebooks.info

www.it-ebooks.info

JavaScript &
jQuery
2nd Edition

The book that should have been in the box

®

David Sawyer McFarland

Beijing | Cambridge | Farnham | Köln | Sebastopol | Tokyo

www.it-ebooks.info

JavaScript & jQuery: The Missing Manual, Second Edition
by David Sawyer McFarland
Copyright © 2012 David Sawyer McFarland. All rights reserved.
Printed in the United States of America.
Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.
O’Reilly Media books may be purchased for educational, business, or sales promotional use.
Online editions are also available for most titles: safari.oreilly.com. For more information,
contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com.
Printing History:
July 2008:		

First Edition.

October 2011:		

Second Edition.

Nutshell Handbook, the Nutshell Handbook logo, the O’Reilly logo, and “The book that should
have been in the box” are registered trademarks of O’Reilly Media, Inc. JavaScript & jQuery:
The Missing Manual, The Missing Manual logo, Pogue Press, and the Pogue Press logo are
trademarks of O’Reilly Media, Inc.
Many of the designations used by manufacturers and sellers to distinguish their products are
claimed as trademarks. Where those designations appear in this book, and O’Reilly Media, Inc.,
was aware of a trademark claim, the designations have been printed in caps or initial caps.
While every precaution has been taken in the preparation of this book, the publisher and
authors assume no responsibility for errors or omissions, or for damages resulting from the use
of the information contained herein.

ISBN: 978-1-449-3-9902-3
[M]

www.it-ebooks.info

Table of Contents

The Missing Credits. . . . . . . . . . . . . . . . . . . . . . . . . . xiii
Introduction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

Part One: Getting Started with JavaScript
Chapter 1: Writing Your First JavaScript Program. . . . . . . . . . . 21
Introducing Programming. . . . . . . . . . . .
What’s a Computer Program?. . . . . . . .
How to Add JavaScript to a Page. . . . . . . . .
External JavaScript Files. . . . . . . . . . .
Your First JavaScript Program.. . . . . . . . . .
Writing Text on a Web Page.. . . . . . . . . . .
Attaching an External JavaScript File. . . . . . .
Tracking Down Errors.. . . . . . . . . . . . . .
The Firefox JavaScript Console.. . . . . . .
Displaying the Internet Explorer 9 Console.
Opening the Chrome JavaScript Console. .
Accessing the Safari Error Console. . . . .

. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .

22
24
25
27
29
31
33
34
35
37
38
39

Chapter 2: The Grammar of JavaScript. . . . . . . . . . . . . . . . . 41
Statements. . . . . . . . . . . . . . . .
Built-In Functions. . . . . . . . . . . . .
Types of Data. . . . . . . . . . . . . . .
Numbers. . . . . . . . . . . . . . .
Strings. . . . . . . . . . . . . . . .
Booleans. . . . . . . . . . . . . . .
Variables. . . . . . . . . . . . . . . . .
Creating a Variable. . . . . . . . . .
Using Variables. . . . . . . . . . . .
Working with Data Types and Variables.
Basic Math. . . . . . . . . . . . . .
The Order of Operations.. . . . . .

. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . .

41
42
42
43
43
44
45
45
48
50
50
51
v

www.it-ebooks.info

Combining Strings. . . . . . . . . . . . .
Combining Numbers and Strings. . . . .
Changing the Values in Variables. . . . .
Tutorial: Using Variables to Create Messages.
Tutorial: Asking for Information. . . . . . . .
Arrays. . . . . . . . . . . . . . . . . . . . . .
Creating an Array.. . . . . . . . . . . . .
Accessing Items in an Array. . . . . . . .
Adding Items to an Array. . . . . . . . .
Deleting Items from an Array. . . . . . .
Tutorial: Writing to a Web Page Using Arrays.
A Quick Object Lesson. . . . . . . . . . . . .
Comments. . . . . . . . . . . . . . . . . . .
When to Use Comments. . . . . . . . . .
Comments in This Book. . . . . . . . . .

. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .

Chapter 3: Adding Logic and Control to Your Programs. . . . . .
Making Programs React Intelligently. . . . . . . . . . . .
Conditional Statement Basics. . . . . . . . . . . . .
Adding a Backup Plan. . . . . . . . . . . . . . . . .
Testing More Than One Condition.. . . . . . . . . .
More Complex Conditions. . . . . . . . . . . . . . .
Nesting Conditional Statements. . . . . . . . . . . .
Tips for Writing Conditional Statements.. . . . . . .
Tutorial: Using Conditional Statements.. . . . . . . . . .
Handling Repetitive Tasks with Loops. . . . . . . . . . .
While Loops. . . . . . . . . . . . . . . . . . . . . .
Loops and Arrays.. . . . . . . . . . . . . . . . . . .
For Loops.. . . . . . . . . . . . . . . . . . . . . . .
Do/While Loops. . . . . . . . . . . . . . . . . . . .
Functions: Turn Useful Code Into Reusable Commands. .
Mini-Tutorial. . . . . . . . . . . . . . . . . . . . . .
Giving Information to Your Functions. . . . . . . . .
Retrieving Information from Functions. . . . . . . .
Keeping Variables from Colliding. . . . . . . . . . .
Tutorial: A Simple Quiz. . . . . . . . . . . . . . . . . . .

51
52
53
55
57
59
60
62
63
66
66
70
72
73
74

77
77
79
. 82
. 83
. 86
. 88
. 88
. 89
. 93
. 93
. 95
. 97
. 98
100
101
102
104
105
108

. . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . .

Part Two: Getting Started with jQuery
Chapter 4: Introducing jQuery.. . . . . . . . . . . . . . . . . . . . . 117
About JavaScript Libraries. . . . . . . . . . .
Getting jQuery. . . . . . . . . . . . . . . . .
Adding jQuery to a Page. . . . . . . . . . . .
Modifying Web Pages: An Overview. . . . . .
Understanding the Document Object Model..

vi

. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .

table of contents

www.it-ebooks.info

117
119
122
124
127

Selecting Page Elements: The jQuery Way. . . . . .
Basic Selectors. . . . . . . . . . . . . . . . . .
Advanced Selectors.. . . . . . . . . . . . . . .
jQuery Filters. . . . . . . . . . . . . . . . . . .
Understanding jQuery Selections. . . . . . . .
Adding Content to a Page.. . . . . . . . . . . . . .
Replacing and Removing Selections. . . . . . .
Setting and Reading Tag Attributes. . . . . . . . . .
Classes. . . . . . . . . . . . . . . . . . . . . .
Reading and Changing CSS Properties. . . . .
Changing Multiple CSS Properties at Once. . .
Reading, Setting, and Removing HTML Attributes. .
Acting on Each Element in a Selection. . . . . . . .
Anonymous Functions. . . . . . . . . . . . . .
this and $(this). . . . . . . . . . . . . . . . . .
Automatic Pull Quotes. . . . . . . . . . . . . . . .
Overview. . . . . . . . . . . . . . . . . . . . .
Programming.. . . . . . . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . .

129
130
133
135
136
138
140
141
142
143
144
146
147
148
149
150
151
152

Chapter 5: Action/Reaction: Making Pages Come
Alive with Events. . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
What Are Events?. . . . . . . . . . . . . . . .
Mouse Events.. . . . . . . . . . . . . . .
Document/Window Events.. . . . . . . .
Form Events. . . . . . . . . . . . . . . .
Keyboard Events. . . . . . . . . . . . . .
Using Events the jQuery Way.. . . . . . . . .
Tutorial: Introducing Events.. . . . . . . . . .
More jQuery Event Concepts. . . . . . . . . .
Waiting for the HTML to Load. . . . . . .
jQuery Events.. . . . . . . . . . . . . . .
The Event Object. . . . . . . . . . . . . .
Stopping an Event’s Normal Behavior. . .
Removing Events. . . . . . . . . . . . . .
Advanced Event Management. . . . . . . . .
Other Ways to Use the bind() Function. .
Tutorial: A One-Page FAQ.. . . . . . . . . . .
Overview of the Task. . . . . . . . . . . .
The Programming. . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .

157
159
160
161
162
162
165
169
169
171
173
175
175
177
179
180
180
180

Chapter 6: Animations and Effects. . . . . . . . . . . . . . . . . . . 185
jQuery Effects. . . . . . . . . . . .
Basic Showing and Hiding. . .
Fading Elements In and Out. .
Sliding Elements. . . . . . . .

. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . .

185
187
187
188

table of contents

www.it-ebooks.info

vii

Tutorial: Login Slider. . . . . . . . . . . . . . . . . .
The Programming. . . . . . . . . . . . . . . . .
Animations. . . . . . . . . . . . . . . . . . . . . . .
Easing.. . . . . . . . . . . . . . . . . . . . . . .
Performing an Action After an Effect Is Completed . .
Tutorial: Animated Dashboard. . . . . . . . . . . . .
The Programming. . . . . . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .

190
191
192
194
196
198
200

Part Three: Building Web Page Features
Chapter 7: Improving Your Images. . . . . . . . . . . . . . . . . . . 207
Swapping Images. . . . . . . . . . . . . .
Changing an Image’s src Attribute.. .
Preloading Images. . . . . . . . . . .
Rollover Images. . . . . . . . . . . .
Tutorial: Adding Rollover Images.. . . . .
Overview of the Task. . . . . . . . . .
The Programming. . . . . . . . . . .
Tutorial: Photo Gallery with Effects.. . . .
Overview of Task. . . . . . . . . . . .
The Programming. . . . . . . . . . .
Advanced Gallery with jQuery FancyBox..
The Basics. . . . . . . . . . . . . . .
Creating a Gallery of Images.. . . . .
Customizing FancyBox. . . . . . . . .
Tutorial: FancyBox Photo Gallery.. . . . .

. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . .

207
208
209
210
211
212
213
216
217
218
222
223
225
226
231

Chapter 8: Improving Navigation. . . . . . . . . . . . . . . . . . . . 235
Some Link Basics. . . . . . . . . . . . . . . .
Selecting Links with JavaScript.. . . . . .
Determining a Link’s Destination. . . . .
Don’t Follow That Link. . . . . . . . . . .
Opening External Links in a New Window. . .
Creating New Windows.. . . . . . . . . . . .
Window Properties.. . . . . . . . . . . .
Opening Pages in a Window on the Page. . .
Tutorial: Opening a Page Within a Page. .
Basic, Animated Navigation Bar. . . . . . . .
The HTML. . . . . . . . . . . . . . . . .
The CSS.. . . . . . . . . . . . . . . . . .
The JavaScript. . . . . . . . . . . . . . .
The Tutorial.. . . . . . . . . . . . . . . .

viii

. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . .

table of contents

www.it-ebooks.info

235
235
236
237
238
240
241
245
248
249
250
252
253
254

Chapter 9: Enhancing Web Forms.. . . . . . . . . . . . . . . . . . . 257
Understanding Forms.. . . . . . . . . . . . . . . . . . . . .
Selecting Form Elements. . . . . . . . . . . . . . . . . .
Getting and Setting the Value of a Form Element. . . . .
Determining Whether Buttons and Boxes Are Checked..
Form Events. . . . . . . . . . . . . . . . . . . . . . . .
Adding Smarts to Your Forms. . . . . . . . . . . . . . . . .
Focusing the First Field in a Form. . . . . . . . . . . . .
Disabling and Enabling Fields. . . . . . . . . . . . . . .
Hiding and Showing Form Options. . . . . . . . . . . .
Tutorial: Basic Form Enhancements. . . . . . . . . . . . . .
Focusing a Field. . . . . . . . . . . . . . . . . . . . . .
Disabling Form Fields. . . . . . . . . . . . . . . . . . .
Hiding Form Fields. . . . . . . . . . . . . . . . . . . . .
Form Validation. . . . . . . . . . . . . . . . . . . . . . . . .
jQuery Validation Plug-in.. . . . . . . . . . . . . . . . .
Basic Validation.. . . . . . . . . . . . . . . . . . . . . .
Advanced Validation. . . . . . . . . . . . . . . . . . . .
Styling Error Messages. . . . . . . . . . . . . . . . . . .
Validation Tutorial.. . . . . . . . . . . . . . . . . . . . . . .
Basic Validation.. . . . . . . . . . . . . . . . . . . . . .
Advanced Validation. . . . . . . . . . . . . . . . . . . .
Validating Checkboxes and Radio Buttons.. . . . . . . .
Formatting the Error Messages. . . . . . . . . . . . . .

. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .

257
259
261
262
263
268
268
269
271
272
273
273
276
278
280
281
284
290
291
292
294
297
299

Chapter 10: Expanding Your Interface. . . . . . . . . . . . . . . . . 301
Organizing Information in Tabbed Panels. . . . . . .
The HTML. . . . . . . . . . . . . . . . . . . . .
The CSS.. . . . . . . . . . . . . . . . . . . . . .
The JavaScript. . . . . . . . . . . . . . . . . . .
Tabbed Panels Tutorial. . . . . . . . . . . . . . .
Adding a Content Slider to Your Site. . . . . . . . . .
Using AnythingSlider . . . . . . . . . . . . . . .
AnythingSlider Tutorial.. . . . . . . . . . . . . .
Customizing the Slider Appearance. . . . . . . .
Customizing the Slider Behavior.. . . . . . . . .
Determining the Size and Position of Page Elements.
Determining the Height and Width of Elements..
Determining the Position of Elements on a Page.
Determining a Page’s Scrolling Position. . . . . .
Adding Tooltips. . . . . . . . . . . . . . . . . . . . .
The HTML. . . . . . . . . . . . . . . . . . . . .
The CSS.. . . . . . . . . . . . . . . . . . . . . .
The JavaScript. . . . . . . . . . . . . . . . . . .
Tooltips Tutorial. . . . . . . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .

301
302
304
306
307
312
313
314
316
318
319
319
322
324
326
326
328
328
329

table of contents

www.it-ebooks.info

ix

Part Four: Ajax: Communication with the Web Server
Chapter 11: Introducing Ajax. . . . . . . . . . . . . . . . . . . . . . 341
What Is Ajax?. . . . . . . . . . . . . . . . .
Ajax: The Basics. . . . . . . . . . . . . . . .
Pieces of the Puzzle. . . . . . . . . . .
Talking to the Web Server. . . . . . . .
Ajax the jQuery Way. . . . . . . . . . . . .
Using the load() Function. . . . . . . .
Tutorial: The load() Function.. . . . . .
The get() and post() Functions. . . . .
Formatting Data to Send to the Server.
Processing Data from the Server.. . . .
Handling Errors.. . . . . . . . . . . . .
Tutorial: Using the get() Function. . . .
JSON. . . . . . . . . . . . . . . . . . . . .
Accessing JSON Data.. . . . . . . . . .
Complex JSON Objects.. . . . . . . . .

. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . .

342
343
344
346
349
349
352
356
357
360
364
365
370
372
373

Chapter 12: Flickr and Google Maps. . . . . . . . . . . . . . . . . . 377
Introducing JSONP. . . . . . . . . . . . . . . .
Adding a Flickr Feed to Your Site. . . . . . . . .
Constructing the URL.. . . . . . . . . . . .
Using the $.getJSON() Function. . . . . . .
Understanding the Flickr JSON Feed. . . .
Tutorial: Adding Flickr Images to Your Site. . . .
Adding Google Maps to Your Site. . . . . . . .
Setting a Location for the Map.. . . . . . .
Other GoMap Options. . . . . . . . . . . .
Adding Markers. . . . . . . . . . . . . . .
Adding Information Windows to Markers. .
GoMap Tutorial.. . . . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .

377
378
379
381
381
383
387
390
391
393
397
397

Part Five: Tips, Tricks, and Troubleshooting
Chapter 13: Getting the Most from jQuery. . . . . . . . . . . . . . 403
Useful jQuery Tips and Information. . . . . . .
$() Is the Same as jQuery(). . . . . . . . .
Saving Selections Into Variables. . . . . . .
Adding Content as Few Times as Possible..
Optimizing Your Selectors. . . . . . . . . .
Using the jQuery Docs. . . . . . . . . . . . . .
Reading a Page on the jQuery Docs Site.. .
Traversing the DOM.. . . . . . . . . . . . . . .
More Functions For Manipulating HTML.. . . .
Advanced Event Handling. . . . . . . . . . . .
x

. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . .

table of contents

www.it-ebooks.info

403
403
404
405
406
407
411
413
419
421

Chapter 14: Going Further with Java­Script. . . . . . . . . . . . . . 425
Working with Strings. . . . . . . . . . . . . . . . . .
Determining the Length of a String. . . . . . . .
Changing the Case of a String. . . . . . . . . . .
Searching a String: indexOf() Technique. . . . .
Extracting Part of a String with slice(). . . . . . .
Finding Patterns in Strings. . . . . . . . . . . . . . .
Creating and Using a Basic Regular Expression. .
Building a Regular Expression. . . . . . . . . . .
Grouping Parts of a Pattern. . . . . . . . . . . .
Useful Regular Expressions. . . . . . . . . . . .
Matching a Pattern. . . . . . . . . . . . . . . . .
Replacing Text. . . . . . . . . . . . . . . . . . .
Trying Out Regular Expressions. . . . . . . . . .
Working with Numbers. . . . . . . . . . . . . . . . .
Changing a String to a Number. . . . . . . . . .
Testing for Numbers. . . . . . . . . . . . . . . .
Rounding Numbers. . . . . . . . . . . . . . . .
Formatting Currency Values. . . . . . . . . . . .
Creating a Random Number. . . . . . . . . . . .
Dates and Times. . . . . . . . . . . . . . . . . . . .
Getting the Month. . . . . . . . . . . . . . . . .
Getting the Day of the Week. . . . . . . . . . . .
Getting the Time. . . . . . . . . . . . . . . . . .
Creating a Date Other Than Today.. . . . . . . .
Putting It All Together. . . . . . . . . . . . . . . . . .
Using External JavaScript Files. . . . . . . . . . .
Writing More Efficient JavaScript. . . . . . . . . . . .
Putting Preferences in Variables. . . . . . . . . .
Ternary Operator.. . . . . . . . . . . . . . . . .
The Switch Statement. . . . . . . . . . . . . . .
Creating Fast-Loading JavaScript. . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .

425
425
426
427
428
430
431
432
435
436
441
443
444
445
445
447
448
448
449
450
451
452
452
456
457
457
459
460
461
462
465

Chapter 15: Troubleshooting and Debugging.. . . . . . . . . . . . 467
Top JavaScript Programming Mistakes. . . . . . . . .
Non-Closed Pairs.. . . . . . . . . . . . . . . . .
Quotation Marks. . . . . . . . . . . . . . . . . .
Using Reserved Words. . . . . . . . . . . . . . .
Single Equals in Conditional Statements.. . . . .
Case-Sensitivity.. . . . . . . . . . . . . . . . . .
Incorrect Path to External JavaScript File. . . . .
Incorrect Paths Within External JavaScript Files. .
Disappearing Variables and Functions.. . . . . .
Debugging with Firebug. . . . . . . . . . . . . . . .
Installing and Turning On Firebug. . . . . . . . .
Viewing Errors with Firebug. . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . .

467
467
472
472
473
473
474
474
476
477
477
478

table of contents

www.it-ebooks.info

xi

Using console.log() to Track Script Progress.
Tutorial: Using the Firebug Console. . . . . .
More Powerful Debugging. . . . . . . . . . .
Debugging Tutorial. . . . . . . . . . . . . . . . .

. . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . .

479
481
485
489

Appendix A: JavaScript Resources. . . . . . . . . . . . . . . . . . . 497
Index. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 503

xii

table of contents

www.it-ebooks.info

The Missing Credits

About the Author
David Sawyer McFarland is president of Sawyer McFarland
Media, Inc., a web development and training company in
Portland, Oregon. He’s been building websites since 1995,
when he designed his first site—an online magazine for
communication professionals. He’s served as webmaster at
the University of California at Berkeley and the Berkeley
Multimedia Research Center, and oversaw a complete CSSdriven redesign of Macworld.com.
In addition to building websites, David is also a writer, trainer, and instructor. He’s
taught web design at UC Berkeley Graduate School of Journalism, the Center for
Electronic Art, the Academy of Art College, Ex’Pressions Center for New Media,
and Portland State University. He’s written articles about the web for Practical Web
Design, MX Developer’s Journal, Macworld magazine, and CreativePro.com.
He welcomes feedback about this book by email: missing@sawmac.com. (If you’re
seeking technical help, however, please refer to the sources listed in Appendix A.)

About the Creative Team
Nan Barber (editor) has worked with the Missing Manual series since its inception—
long enough to remember HyperCard stacks.
Holly Bauer (production editor) lives in Ye Olde Cambridge, MA. She’s a production editor by day and an avid home cook, prolific DIYer, and mid-century modern
design enthusiast by evening/weekend. Email: holly@oreilly.com.
xiii

www.it-ebooks.info

Acknowledgements

Carla Spoon (proofreader) is a freelance writer and copy editor. An avid runner, she
works and feeds her tech gadget addiction from her home office in the shadow of
Mount Rainier. Email: carla_spoon@comcast.net.
Angela Howard (indexer) has been indexing for more than 10 years, mostly for
computer books, but occasionally for books on other topics, such as travel, alternative medicine, and leopard geckos. She lives in California with her husband, daughter, and two cats.

Acknowledgements
Many thanks to all those who helped with this book, including Shelley Powers and
Steve Suehring, whose watchful eyes saved me from potentially embarrassing mistakes. Thanks also to my many students at Portland State University who have sat
through my long JavaScript lectures and struggled through my programming assignments—especially the members of Team Futzbit (Combination Pizza Hut and
Taco Bell) for testing the tutorials: Julia Hall, Amber Brucker, Kevin Brown, Josh
Elliott, Tracy O’Connor, and Blake Womack. Also, we all owe a big debt of gratitude to John Resig and the jQuery team for creating the best tool yet for making
JavaScript fun.
Finally, thanks to David Pogue for getting me started; Nan Barber for making my
writing sharper and clearer; my wife, Scholle, for putting up with an author’s crankiness; and thanks to my kids, Graham and Kate, because they’re just awesome.

The Missing Manual Series
Missing Manuals are witty, superbly written guides to computer products that don’t
come with printed manuals (which is just about all of them). Each book features
a handcrafted index and cross-references to specific page numbers (not just “see
Chapter 14”).
Recent and upcoming titles include:
• Access 2010: The Missing Manual by Matthew MacDonald
• Buying a Home: The Missing Manual by Nancy Conner
• CSS: The Missing Manual, Second Edition, by David Sawyer McFarland
• Creating a Website: The Missing Manual, Third Edition, by Matthew Mac­Donald
• David Pogue’s Digital Photography: The Missing Manual by David Pogue
• Dreamweaver CS5.5: The Missing Manual by David Sawyer McFarland
• Droid X2: The Missing Manual by Preston Gralla
• Droid 2: The Missing Manual by Preston Gralla
• Excel 2010: The Missing Manual by Matthew MacDonald

xiv

the missing credits

www.it-ebooks.info

The Missing Manual
Series

• Facebook: The Missing Manual, Third Edition, by E.A. Vander Veer
• FileMaker Pro 11: The Missing Manual by Susan Prosser and Stuart Gripman
• Flash CS5.5: The Missing Manual by Chris Grover
• Galaxy Tab: The Missing Manual by Preston Gralla
• Google Apps: The Missing Manual by Nancy Conner
• Google SketchUp: The Missing Manual by Chris Grover
• The Internet: The Missing Manual by David Pogue and J.D. Biersdorfer
• iMovie ’11 & iDVD: The Missing Manual by David Pogue and Aaron Miller
• iPad 2: The Missing Manual by J.D. Biersdorfer
• iPhone: The Missing Manual, Fourth Edition, by David Pogue
• iPhone App Development: The Missing Manual by Craig Hockenberry
• iPhoto ’11: The Missing Manual by David Pogue and Lesa Snider
• iPod: The Missing Manual, Ninth Edition, by J.D. Biersdorfer and David Pogue
• Living Green: The Missing Manual by Nancy Conner
• Mac OS X Snow Leopard: The Missing Manual by David Pogue
• Mac OS X Lion: The Missing Manual by David Pogue
• Microsoft Project 2010: The Missing Manual by Bonnie Biafore
• Motorola Xoom: The Missing Manual by Preston Gralla
• Netbooks: The Missing Manual by J.D. Biersdorfer
• Office 2010: The Missing Manual by Nancy Connor, Chris Grover, and Matthew
MacDonald
• Office 2011 for Macintosh: The Missing Manual by Chris Grover
• Palm Pre: The Missing Manual by Ed Baig
• Personal Investing: The Missing Manual by Bonnie Biafore
• Photoshop CS5.5: The Missing Manual by Lesa Snider
• Photoshop Elements 10: The Missing Manual by Barbara Brundage
• PowerPoint 2007: The Missing Manual by E.A. Vander Veer
• Premiere Elements 8: The Missing Manual by Chris Grover
• QuickBase: The Missing Manual by Nancy Conner
• QuickBooks 2011: The Missing Manual by Bonnie Biafore
• QuickBooks 2012: The Missing Manual by Bonnie Biafore
the missing credits

www.it-ebooks.info

xv

The Missing Manual
Series

• Switching to the Mac: The Missing Manual, Snow Leopard Edition, by David Pogue
• Switching to the Mac: The Missing Manual, Lion Edition, by David Pogue
• Wikipedia: The Missing Manual by John Broughton
• Windows Vista: The Missing Manual by David Pogue
• Windows 7: The Missing Manual by David Pogue
• Word 2007: The Missing Manual by Chris Grover
• Your Body: The Missing Manual by Matthew MacDonald
• Your Brain: The Missing Manual by Matthew MacDonald
• Your Money: The Missing Manual by J. D. Roth

xvi

the missing credits

www.it-ebooks.info

Introduction

T

he Web was a pretty boring place in its early days. Web pages were constructed
from plain old HTML, so they could display information, and that was about
all. Folks would click a link and then wait for a new web page to load. That
was about as interactive as it got.
These days, most websites are almost as responsive as the programs on a desktop
computer, reacting immediately to every mouse click. And it’s all thanks to the subjects
of this book—JavaScript and its sidekick, jQuery.

What Is JavaScript?
JavaScript is a programming language that lets you supercharge your HTML with
animation, interactivity, and dynamic visual effects.
JavaScript can make web pages more useful by supplying immediate feedback. For
example, a JavaScript-powered shopping cart page can instantly display a total cost,
with tax and shipping, the moment a visitor selects a product to buy. JavaScript can
produce an error message immediately after someone attempts to submit a web form
that’s missing necessary information.
JavaScript also lets you create fun, dynamic, and interactive interfaces. For example,
with JavaScript, you can transform a static page of thumbnail images into an animated
slideshow (as you’ll learn how to do on page 314). Or you can do something more
subtle like stuff more information on a page without making it seem crowded by
organizing content into bite-size panels that visitors can access with a simple click of
the mouse (page 301). Or add something useful and attractive, like pop-up tooltips
that provide supplemental information for items on your web page (page 326).

1

www.it-ebooks.info

What Is JavaScript?

Another one of JavaScript’s main selling points is its immediacy. It lets web pages
respond instantly to actions like clicking a link, filling out a form, or merely moving
the mouse around the screen. JavaScript doesn’t suffer from the frustrating delay
associated with server-side programming languages like PHP, which rely on communication between the web browser and the web server. Because it doesn’t rely on
constantly loading and reloading web pages, JavaScript lets you create web pages that
feel and act more like desktop programs than web pages.
If you’ve visited Google Maps (http://maps.google.com), you’ve seen JavaScript in action. Google Maps lets you view a map of your town (or pretty much anywhere else for
that matter), zoom in to get a detailed view of streets and bus stops, or zoom out to get
a birds-eye view of how to get across town, the state, or the nation. While there were
plenty of map sites before Google, they always required reloading multiple web pages
(usually a slow process) to get to the information you wanted. Google Maps, on the
other hand, works without page refreshes—it responds immediately to your choices.
The programs you create with JavaScript can range from the really simple (like popping up a new browser window with a web page in it) to full-blown web applications
like Google Docs (http://docs.google.com), which let you create presentations, edit
documents, and create spreadsheets using your web browser with the feel of a program running directly on your computer.

A Bit of History
Invented by Netscape back in 1995, JavaScript is nearly as old as the web itself. While
JavaScript is well respected today, it has a somewhat checkered past. It used to be
considered a hobbyist’s programming language, used for adding less-than-useful
effects such as messages that scroll across the bottom of a web browser’s status bar
like a stock-ticker, or animated butterflies following mouse movements around the
page. In the early days of JavaScript, it was easy to find thousands of free JavaScript
programs (also called scripts) online, but many of those scripts didn’t work in all web
browsers, and at times even crashed browsers.
Note: JavaScript has nothing to do with the Java programming language. JavaScript was originally
named LiveScript, but the marketing folks at Netscape decided they’d get more publicity if they tried to
associate the language with the then-hot Java. Don’t make the mistake of confusing the two…especially
at a job interview!

In the early days, JavaScript also suffered from incompatibilities between the two
prominent browsers, Netscape Navigator and Internet Explorer. Because Netscape
and Microsoft tried to outdo each other’s browsers by adding newer and (ostensibly)
better features, the two browsers often acted in very different ways, making it difficult
to create JavaScript programs that worked well in both.

2

javascript & jquery: the missing manual

www.it-ebooks.info

What Is jQuery?

Note: After Netscape introduced JavaScript, Microsoft introduced jScript, their own version of JavaScript
included with Internet Explorer.

Fortunately the worst of those days is nearly gone and contemporary browsers like
Firefox, Safari, Chrome, Opera, and Internet Explorer 9 have standardized much of
the way they handle JavaScript, making it easier to write JavaScript programs that
work for most everyone. (There are still a few incompatibilities among current web
browsers, so you’ll need to learn a few tricks for dealing with cross-browser problems.
You’ll learn how to overcome browser incompatibilities in this book.)
In the past several years, JavaScript has undergone a rebirth, fueled by high-profile
websites like Google, Yahoo, and Flickr, which use JavaScript extensively to create
interactive web applications. There’s never been a better time to learn JavaScript.
With the wealth of knowledge and the quality of scripts being written, you can add
sophisticated interaction to your website—even if you’re a beginner.
Note: JavaScript is also known by the name ECMAScript. ECMAScript is the “official” JavaScript specification, which is developed and maintained by an international standards organization called Ecma International: http://www.ecmascript.org/

JavaScript Is Everywhere
JavaScript isn’t just for web pages, either. It’s proven to be such a useful programming
language that if you learn JavaScript you can create Yahoo Widgets and Apple’s
Dashboard Widgets, write programs for the iPhone, and tap into the scriptable features of many Adobe programs like Acrobat, Photoshop, Illustrator, and Dreamweaver. In fact, Dreamweaver has always offered clever JavaScript programmers a
way to add their own commands to the program.
In addition, the programming language for Flash—ActionScript—is based on Java­
Script, so if you learn the basics of JavaScript, you’ll be well prepared to learn Flash
programming.

What Is jQuery?
JavaScript has one embarrassing little secret: writing it is hard. While it’s simpler
than many other programming languages, JavaScript is still a programming language. And many people, including web designers, find programming difficult. To
complicate matters further, different web browsers understand JavaScript differently, so a program that works in, say, Chrome may be completely unresponsive in
Internet Explorer 9. This common situation can cost many hours of testing on different machines and different browsers to make sure a program works correctly for
your site’s entire audience.

introduction

www.it-ebooks.info

3

HTML: The
Barebones Structure

That’s where jQuery comes in. jQuery is a JavaScript library intended to make
Java­Script programming easier and more fun. A JavaScript library is a complex
JavaScript program that both simplifies difficult tasks and solves cross-browser
problems. In other words, jQuery solves the two biggest headaches with JavaScript—
complexity and the finicky nature of different web browsers.
jQuery is a web designer’s secret weapon in the battle of JavaScript programming.
With jQuery, you can accomplish tasks in a single line of code that would otherwise take hundreds of lines of programming and many hours of browser testing to
achieve with your own JavaScript code. In fact, an in-depth book solely about Java­
Script would be at least twice as thick as the one you’re holding; and, when you were
done reading it (if you could manage to finish it), you wouldn’t be able to do half of
the things you can accomplish with just a little bit of jQuery knowledge.
That’s why most of this book is about jQuery. It lets you do so much, so easily. Another great thing about jQuery is that you can add advanced features to your website
with thousands of easy-to-use jQuery plug-ins. For example, the FancyBox plug-in
(which you’ll meet on page 222) lets you take a simple page of thumbnail graphics
and turn it into an interactive slideshow—all with a single line of programming!
Unsurprisingly, jQuery is used on millions of websites (http://trends.builtwith.com/
javascript/JQuery). It’s baked right into popular content management systems like
Drupal and WordPress. You can even find job listings for “jQuery Programmers”
with no mention of JavaScript. When you learn jQuery, you join a large community
of fellow web designers and programmers who use a simpler and more powerful
approach to creating interactive, powerful web pages.

HTML: The Barebones Structure
JavaScript isn’t much good without the two other pillars of web design—HTML and
CSS. Many programmers talk about the three languages as forming the “layers” of
a web page: HTML provides the structural layer, organizing content like pictures
and words in a meaningful way; CSS (Cascading Style Sheets) provides the presentational layer, making the content in the HTML look good; and JavaScript adds a
behavioral layer, bringing a web page to life so it interacts with web visitors.
In other words, to master JavaScript, you need to have a good understanding of both
HTML and CSS.
Note: For a full-fledged introduction to HTML and CSS, check out Head First HTML with CSS and XHTML
by Elisabeth Freeman and Eric Freeman. For an in-depth presentation of the tricky subject of Cascading
Style Sheets, pick up a copy of CSS: The Missing Manual by David Sawyer McFarland (both O’Reilly).

HTML (Hypertext Markup Language) uses simple commands called tags to define the
various parts of a web page. For example, this HTML code creates a simple web page:

4

javascript & jquery: the missing manual

www.it-ebooks.info

HTML: The
Barebones Structure




Hey, I am the title of this web page.


Hey, I am some body text on this web page.



It may not be exciting, but this example has all the basic elements a web page needs.
This page begins with a single line—the document type declaration, or doctype
for short—that states what type of document the page is and which standards it
conforms to. HTML actually comes in different versions, and you use a different
doctype with each. In this example, the doctype is for HTML5; the doctype for an
HTML 4.01 or XHTML document is longer and also includes a URL that points the
web browser to a file on the Internet that contains definitions for that type of file.
In essence, the doctype tells the web browser how to display the page. The doctype can even affect how CSS and JavaScript work. With an incorrect or missing
doctype, you may end up banging your head against a wall as you discover lots of
cross-browser differences with your scripts. If for no other reason, always include a
doctype in your HTML.
There are five types of HTML commonly used today: HTML 4.01 Transitional,
HTML 4.01 Strict, XHTML 1.0 Transitional, XHTML 1.0 Strict, and HTML5 (the
new kid on the block). All five are very much alike, with just slight differences in
how tags are written and which tags and attributes are allowed. Most web page
editing programs add an appropriate doctype when you create a new web page, but
if you want examples of how each is written, you can find templates for the different
types of pages at www.webstandards.org/learn/reference/templates.
It doesn’t really matter which type of HTML you use. All current web browsers understand each of the five common doctypes and can display web pages using any of
the four document types without problem. Which doctype you use isn’t nearly as
important as making sure you’ve correctly written your HTML tags—a task that’s
helped by validating the page, as described in the box on page 7.
Note: XHTML was once heralded as the next big thing for web designers. Although you’ll still find people
who think you should only use XHTML, the winds of change have turned. The World Wide Web Consortium (W3C) has stopped development of XHTML in favor of HTML5. You can learn more about HTML5 by
picking up a copy of HTML5: The Missing Manual by Matthew MacDonald or HTML5: Up and Running by
Mark Pilgrim (both from O'Reilly).

How HTML Tags Work
In the example on the previous page, as in the HTML code of any web page, you’ll
notice that most commands appear in pairs that surround a block of text or other
introduction

www.it-ebooks.info

5

HTML: The
Barebones Structure

commands. Sandwiched between brackets, these tags are instructions that tell a web
browser how to display the web page. Tags are the “markup” part of the Hypertext
Markup Language.
The starting (opening) tag of each pair tells the browser where the instruction begins,
and the ending tag tells it where the instruction ends. Ending or closing tags always
include a forward slash (/) after the first bracket symbol (<). For example, the tag

marks the start of a paragraph, while

marks its end. For a web page to work correctly, you must include at least these three tags: • The tag appears once at the beginning of a web page (after the doctype) and again (with an added slash) at the end. This tag tells a web browser that the information contained in this document is written in HTML, as opposed to some other language. All of the contents of a page, including other tags, appear between the opening and closing tags. If you were to think of a web page as a tree, the tag would be its trunk. Springing from the trunk are two branches that represent the two main parts of any web page—the head and the body. • The head of a web page, surrounded by tags, contains the title of the page. It may also provide other, invisible information (such as search keywords) that browsers and web search engines can exploit. In addition, the head can contain information that’s used by the web browser for displaying the web page and for adding interactivity. You put Cascading Style Sheets, for example, in the head of the document. The head of the document is also where you often include JavaScript programming and links to JavaScript files. • The body of a web page, as set apart by its surrounding tags, contains all the information that appears inside a browser window: headlines, text, pictures, and so on. Within the tag, you commonly find tags like the following: • You tell a web browser where a paragraph of text begins with a

(opening paragraph tag), and where it ends with a

(closing paragraph tag). • The tag emphasizes text. If you surround some text with it and its partner tag, , you get boldface type. The HTML snippet Warning! tells a web browser to display the word “Warning!” in bold type. • The tag, or anchor tag, creates a hyperlink in a web page. When clicked, a hyperlink—or link—can lead anywhere on the web. You tell the browser where the link points by putting a web address inside the tags. For instance, you might type Click here!. The browser knows that when your visitor clicks the words “Click here!” it should go to the Missing Manual website. The href part of the tag is called an attribute and the URL (the Uniform Resource Locator or web address) is the value. In this example, http://www.missingmanuals.com is the value of the href attribute. 6 javascript & jquery: the missing manual www.it-ebooks.info CSS: Adding Style to Web Pages UP TO SPEED Validating Web Pages As mentioned on page 5, a web page’s doctype identifies which type of HTML or XHTML you used to create the web page. The rules differ subtly depending on type: For example, unlike HTML 4.01, XHTML doesn’t let you have an unclosed

tag, and requires that all tag names and attributes be lowercase ( not , for example). HTML5 includes new tags and lets you use either HTML or XHTML syntax. Because different rules apply to each variant of HTML, you should always validate your web pages. An HTML validator is a program that makes sure a web page is written correctly. It checks the page’s doctype and then analyzes the code in the page to see whether it matches the rules defined by that doctype. For example, the validator flags mistakes like a misspelled tag name or an unclosed tag. The World Wide Web Consortium (W3C), the organization that’s responsible for many of the technologies used on the web, has a free online validator at http:// validator.w3.org. You can copy your HTML and paste it into a web form, upload a web page, or point the validator to an already existing page on the web; the validator then analyzes the HTML and reports back whether the page is valid or not. If there are any errors, the validator tells you what the error is and on which line of the HTML file it occurs. If you use Firefox, you can download the HTML Validator plug-in from http://users.skynet.be/mgueury/mozilla. This plug-in lets you validate a page directly in your web browser; just open a page (even a page directly off of your computer) and the validator will point out any errors in your HTML. There’s a similar plug-in for Safari, called Safari Validator, which you can find at http://zappatic.net/projects/ safarivalidator. Valid HTML isn’t just good form, it also helps to make sure your JavaScript programs work correctly. A lot of JavaScript involves manipulating a web page’s HTML: identifying a particular form field, for example, or placing new HTML (like an error message) in a particular spot. In order for JavaScript to access and manipulate a web page, the HTML must be in proper working order. Forgetting to close a tag, using the same ID name more than once, or improperly nesting your HTML tags can make your JavaScript code behave erratically or not at all. CSS: Adding Style to Web Pages At the beginning of the Web, HTML was the only language you needed to know. You could build pages with colorful text and graphics and make words jump out using different sizes, fonts, and colors. But today, web designers turn to Cascading Style Sheets to add visual sophistication to their pages. CSS is a formatting language that lets you make text look good, build complex page layouts, and generally add style to your site. Think of HTML as merely the language you use to structure a page. It helps identify the stuff you want the world to know about. Tags like

and

denote headlines and assign them relative importance: A heading 1 is more important than a heading 2. The

tag indicates a basic paragraph of information. Other tags provide further structural clues: for example, a