Wiley.com
Print this page Share

Beginning JavaScript, 4th Edition

ISBN: 978-0-470-52593-7
Paperback
792 pages
October 2009
Beginning JavaScript, 4th Edition (0470525932) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
7-8 Error in Text
The heading "Linking to an External JavaScript File" and "Advantages of using an External File" should come after "Try it out: Painting the Page Red."
10/11/2010
14-end Error in Code
All instances of <br> should be <br /> to be fully XHTML compliant.
10/14/2010
24 Error in Code
Use of script language JavaScript is deprecated, language is no longer a valid value.

Use: script type javascript instead.
10/11/2010
26 Error in Text
First sentence: "Now that you've seen how to cope with errors," should be stricken. Error handling is covered in depth in Chapter 4.
10/11/2010
34 & 35 Error in Text
References to Chapter 4 should be Chapter 5 (i.e.) "However in Chapter 4 you'll be looking at the Math object...."
10/11/2010
208 Text Correction: Error in Code
currently reads:
else if (document.all)
{
browser = "Internet Explorer";
version = "6-";+

Should be:
else if (document.all)
{
browser = "Internet Explorer";
version = "6-";
04/02/15

Related Titles

More By These Authors

General Web Site Development

by Thomas Rizzo, Reza Alirezaei, Jeff Fried, Paul Swider, Scot Hillier, Kenneth Schaefer
Back to Top