Updates
- None yet. Have an update? Let me know.
Corrections
- Page 39: What used to be the European Computer Manufacturers Association goes by Ecma International (Ecma, not ECMA).
- Page 154: There should be no space before
iconin the firstrelexample (the space betweenshortcut iconis correct, however). Here is the corrected version, with the correction highlighted:<link rel="icon" href="http://example.com/favicon.png" type="image/png" /> <!--For Internet Explorer; no type must be specified--> <link rel="shortcut icon" href="http://example.com/favicon.ico" />
- Page 214: Figures 17.7 and 17.8 have CSS that refers to
div#container. They should actually refer todiv#page. - Page 244: The colon (
:) and two slashes (/) must be escaped with two back-slashes (\\) in the attribute selector, per jQuery’s documentation. Here is the correct selector for hitting external links inside ofdiv#content, with the corrections highlighted::/*JavaScript inside the ready event*/ $('div#content a[href^=http\\:\\/\\/]').addClass('ext'); - Page 244: The CSS style declaration at the bottom of the page should refer to
margin-right. Here is the corrected version, with the correction highlighted:ul#navigation a { margin-right: 30px; } ul#navigation a:hover { margin-right: 0px; } - That’s all for now. Find a mistake that needs to be corrected? Let me know.