From: "James Craig" <[EMAIL PROTECTED]>
Paul Wilkins wrote:
Is the object tag to be used instead for the include pattern?
The <object> include pattern has some performance problems, it would be
best to use the anchor include pattern but include some text indicated
the marker that was being included.
So when we have multiple phone numbers of the same type
Staff work phone numbers:
...
Person One
123-4567
How should they be marked up. Something like this?
<p>Staff <span class="type" id="work-type">work</span> phone numbers:</p>
...
<div class="vcard">
<p class="fn">Person One</p>
<p class="tel"><a href="#work-type" class="include">
<span class="value">123-4567</span>
</a></p>
</div>
This feels wrong, and not the least because fragment identifiers have
received a hammering in terms of usability.
http://www.useit.com/alertbox/within_page_links.html
It's tempting to change the text (god forbid) to achieve better code.
Person One
Wk: 123-4567
<div class="vcard">
<p class="fn">Person One</p>
<p class="tel">
<abbr class="type" title="work">Wk:</abbr>
<span class="value">123-4567</span>
</p>
</div>
--
Paul Wilkins
_______________________________________________
microformats-discuss mailing list
[email protected]
http://microformats.org/mailman/listinfo/microformats-discuss