(Why I raised this thread was that the attributes are available in HTML4 but not in HTML5. So, I want to know alternative method.)
- Code: Select all
<table>
<tbody>
<tr>
<th></th>
<th id="room1">Stream 1 (<span class="location">Room1</span>)</th>
<th id="room2">Stream 2 (<span class="location">Room2</span>)</th>
</tr>
<tr>
<th id="td21045">
<abbr class="dtstart" title="20081112T1315">1:15pm</abbr>
- <abbr class="dtend" title="20081112T1400">2:00pm</abbr>
</th>
<td class="vevent summary" headers="room1 td21045">
KOJIMA, Yoshio - "Future of the Oppappie!"
</td>
<td class="vevent summary" headers="room2 td21045">
FUKUDA, Yasuo - "Anata toha Chigau'n desu."
</td>
</tr>
</tbody>
</table>
* In this code, two "vevent" data share common "dtstart" field, "dtend" field and "location" field at TH element.
(The code is based on "microformats", Chapter 8, John Allsopp)