Just want to point out that in Chapter 10, page 361 (very bottom of the page) this errata:
This Code
Code:
<input id="SayHello" type="button" value="Say Hello" />
Should Be:
Code:
<input id="SayHello" type="button" value="Say Hello" onclick="helloWorld();" />
Sure, this is more than likely listed in the errata, but I want to show it here.
The greeting fails without
"onclick="helloWorld()" />.
This may be obvious to experienced programmers.
It's all in the details!
Imar: Great book!
JJ