I've been looking over the HTML5 drafts and HTML4 - HTML5 differences doc, and here's a list of bits that caught my eye, and why.

READER DISCOUNTSave $50 on terminal.training

I've published 38 videos for new developers, designers, UX, UI, product owners and anyone who needs to conquer the command line today.

  1. textarea now supports wrap again. This is cool if you've got a text box that takes code listings (which I do).
  2. input element supports: datetime|datetime-local|date|month|week|time|number|range|email|url - perfect for validation.
  3. manifest attribute, lending more support to offline (web) apps.
  4. The strike tag is being binned. The funny thing being all the blogs that use the tag to indicate a correction will, without an update (and if they're in standards mode), have the mistake plugged back in. Then again, the browsers will probably keep the tag.
  5. name attribute is being striped away from forms and the like (obviously not inputs elements). No more excuses IE.
  6. getElementsByClassName. Need I say more?
  7. classList. We will be able to use methods such as has(), add(), remove() and toggle() to manipulate classes on elements. I can almost smell the library changes.