Wiley.com
Print this page Share

Professional Ajax, 2nd Edition

ISBN: 978-0-470-10949-6
Paperback
624 pages
March 2007
Professional Ajax, 2nd Edition (0470109491) 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
5 Error in Text
Paragraph 3, last sentence: Period is missing at the end of the sentence.
09/01/2010
47 Error in Code
delete lines 4 and 5:

//get your reference to the form
var oForm = document.forms[0];
07/05/2007
78 Error in Code
$date = strtotime($_GET["txtBirthday"]);
if(!is_numeric($date) or $date < 0){
$message = "This is not a valid date";

should be:

$date = strtotime($_GET["txtBirthday"]);
if(!is_numeric($date))
$message = "This is not a valid date";
08/04/08

Related Titles

More By These Authors

General Web Site Development

by Linda Hefferman, Asha Dornfest
by John Holliday, John Alexander, Jeff Julian, Eli Robillard, Brendon Schwartz, Matt Ranlett, J. Dan Attis, Adam Buenz, Thomas Rizzo
by Mark S. Choate
Back to Top