Links
- Google Developers
- HTTP Error Pages
- The webdev launch checklist
- The definitive guide to forms based website authentication
- Experiment results on parallel connections
- Cross browser compatibility check – caniuse.com
- Cool URIs don't change
- Quick Docs
- See Also
- XMLHttpRequest2
- Server-Sent Events: The simplest realtime browser spec
- Designing for A Retina Web
- Icon fonts
- Best Practices
- Google Web Fundamentals – A handbook for best practices
- Performance
- Tools
- Monitoring
- Compatibility
User Agents
Comet
- Can try to do this also using
Transfer-Encoding: chunked
- But what happens if there are intermediate servers that translate it?
- Works great for Pub/Sub and Comet over local servers as used by webdis
Conditional HTML
- Conditional comments
- IE, though, has been programmed to recognize the special
<!--[if IE]>
syntax, resolves the if and parses the content of the conditional comment as if it were normal page content. - Since conditional comments use the HTML comment structure, they
can only be included in HTML files, and not in CSS
files. However, you can put an entire new
<link>
tag in the conditional comment referring to an extra style sheet.
- IE, though, has been programmed to recognize the special
- How To Create an IE-Only Stylesheet
- From http://css-tricks.com/snippets/html/universal-ie6-css/
<!--[if !IE 6]><!--> <link rel="stylesheet" type="text/css" media="screen, projection" href="REGULAR-STYLESHEET.css" /> <!--<![endif]--> <!--[if gte IE 7]> <link rel="stylesheet" type="text/css" media="screen, projection" href="REGULAR-STYLESHEET.css" /> <![endif]--> <!--[if lte IE 6]> <link rel="stylesheet" type="text/css" media="screen, projection" href="http://universal-ie6-css.googlecode.com/files/ie6.0.3.css" /> <![endif]-->