Errata

Learning from jQuery

Errata for Learning from jQuery

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
PDF
Page 6
Singapore

The author used a clone() method twice, as in:
document.body.appendChild(paragraphs[i].clone(true));

However, there is no clone method for the DOM element.

It should be cloneNode(true) instead.

Note from the Author or Editor:
Yes, this is an error - clone(), used in both examples on the second half of the page, is the jQuery method, and cloneNode() is the native JavaScript method; must have mixed the two up.

Replacing ".clone(" with ".cloneNode(" will fix this.

Tan Gek Hua  Mar 15, 2013