Dan Smith's Profile

Member since Jun 02, 2009, follows 1 people, 0 public groups, 281 public bookmarks (283 total).

More »
Tags

Recent Tags:
Top Tags:

More »
Recent Bookmarks and Annotations

  • WebAIM: Blog - JAWS ate my tables about 10 hours ago
    • We as blind people aren’t going to get full web accessibility until Jaws is no longer a factor. Freedom Scientific has shown, repeatedly, that they have no interest in working with standards bodies, following standards (either web standards or desktop standards like IAccessible2), or helping developers in any meaningful way. Currently, Jaws is one of the largest factors holding us back from full accessibility. We as users and concerned developers need to launch a marketing blitz similar to the one that’s made huge progress in killing off IE6. That’s the only way we’re going to see any improvement in the situation.
  • Documenting the Hacks: CSS Browser Targeting | bradKELLETT about 11 hours ago
  • Modernizr about 11 hours ago
  • definition: anchors, elements/tags (HTML markup) | Motive Web Design Glossary about 13 hours ago
    • Naming anchors


      Tips and best practices for name and id values

      • name and id values must be unique within any one document, i.e. the same value should not be used for more than one element, however an element may have the same value for both name and id attributes
      • content authored to the XHTML 1.0 specification must use id attributes to identify fragments [2]. For the purposes of backward compatibility, use the same value for both the name and id attributes. For example: <a name="pagetop" id="pagetop"></a>. This avoids potential complications with older (typically version 4) browsers not recognising the id attribute [3].
    • 1 more annotations...
  • HTML Anchors with 'name' or 'id'? - Stack Overflow about 13 hours ago
    • <h1 id="foo">Foo Title</h1> is OK in both HTML4 and HTML5. This won’t work in Netscape 4, but you’ll probably use a dozen other features that don’t work in Netscape 4.
    • ID method will not work on older browsers, anchor name method will be deprecated in never HTML versions... I'd go with id.
    • 2 more annotations...