|
You are here |
www.davidbcalhoun.com | ||
| | | | |
www.smashingmagazine.com
|
|
| | | | | Much of the excitement we've seen so far about HTML5 has been for the new APIs: local storage, application cache, Web workers, 2-D drawing and the like. But let's not overlook that **HTML5 brings us 30 new elements to mark up documents and applications**, boosting the total number of elements available to us to over 100. | |
| | | | |
lamplightdev.com
|
|
| | | | | Chris Haynes - web developer consultant | |
| | | | |
alistapart.com
|
|
| | | | | By default, Macromedia Flash generates HTML that is invalid (but it works). Can you have your Flash and web standards, too? Drew McLellan has found a way to embed Flash content using only valid tags and attributes. | |
| | | | |
www.hillelwayne.com
|
|
| | | What does this print? x = 1 x --> 0 Think it through, then try it in a browser console! Answer and explanation in the dropdown. Show answer It prints 1. wait wtf At the beginning of a line (and only at the beginning of a line), --> starts a comment. The JavaScript is parsed as x=1; x; // 0 The browser then displays the value of the last expression, which of course is 1. | ||