Skip to main content
2 of 6
added 92 characters in body
Dave Jarvis
  • 1.9k
  • 1
  • 12
  • 29

Other items to consider:

  • Place JavaScript at the bottom (before the closing body tag).
  • Find other ways to avoid the flash of unstyled content.
  • Avoid hard-coding text (e.g., "DeepFlow", "System") with an eye to internationalization.
  • Use CSS to change layout, not multiple <br /> tags.
  • Leave "style='display:none'" in CSS; change the class instead.
  • Accessibility and its corresponding mark-up.
  • Use tools like JSLint, CSSLint, in addition to the W3C validation tool.
  • Good use of unique id attributes.
  • The attribute offset1 is possibly poorly named.
Dave Jarvis
  • 1.9k
  • 1
  • 12
  • 29