Sitewide Report
| Trend Website | 2009-05-14 10:55 |
| Pages: 15Depth: 3rd-levelRuleset: 1.0.b8 (outdated: current ruleset is 0906-1) | |
| URL: http://www.trendcs.com/ | |
Scripting
onclickBest Practices (opens in a new window)
- The
onclickattribute should not be used on elements that cannot accept keyboard focus.
onmouseover & onmouseoutBest Practices (opens in a new window)
- Each focusable element with an
onmouseoverattribute should also have anonfocusattribute, and their associated event handlers should trigger the same or similar actions. - Each focusable element with an
onmouseoutattribute should also have anonblurattribute, and their associated event handlers should trigger the same or similar actions. - The
onmouseoverandonmouseoutattributes should not be used on elements that cannot accept keyboard focus; use CSS techniques instead to provide the desired stylistic effects.

