A Pre Launch Checklist
Everything worth verifying before a page goes live, grouped so it can be worked through in about twenty minutes.
Checking markup and input against the rules.
7 notes tagged
Everything worth verifying before a page goes live, grouped so it can be worked through in about twenty minutes.
Consistent formatting, markup linting, live reload and shared settings. A day of setup that pays back on every file afterwards.
A symptom to cause lookup for the problems that come up repeatedly, and the two minute checks that resolve most of them.
The validator catches nesting errors, duplicate ids and missing attributes in seconds. A page that renders is not the same as a page that is correct.
Automated tools find about a third of problems. Here is what they catch, what they miss, and a manual routine that takes fifteen minutes.
Read values, submit without a page reload, validate with the built in API, and handle errors accessibly. All of it built on a real form element.
The browser can check most of a form before it is sent, with no JavaScript. Learn the attributes, the CSS hooks, and why none of it replaces server va...