On page 218, the 3rd line of code in the sidebar is missing a comma. It should read:
return this.css('color', function() {
Section 4.3.2, 1st paragraph, 2nd sentence which starts "For example, we'll new to create...", should be "For example, we'll need to create...".
Page 132, code block in middle of page: the first line of code should be:
$('.filterItem [name]').live('adjustName',function(){
A space was removed between .filterItem and [name]
The following errors appear in the first printing of the book and have been fixed for the second printing.
In the Acknowledgements section, the following names are misspelled: Ernest Friedman-Hill, Andrew Monkhouse, Jeanne Boyarsky, and Max Habibi.
Sorry about that people!
Additionally, the list should also include Gregg Bolinger.
Section 1.3.5, page 14: The line of code:
if (this.disabled == null) this.disabled = true;
should be:
if (this.disabled != null) this.disabled = true;
It was correct in the 1st edition -- not sure how it got mangled during editing. Luckily, it's not the main point of the example.
Page 48, after the syntax block for map(): The text that reads:
For example, the following code will collect all the id values of all images on the page into a JavaScript array:
should be:
For example, the following code will collect all the id values of all <div> elements on the page into a JavaScript array: