How to code table of persons with their details in html5

olgakarachi

New Member
I have following data for some people:\[code\]Name and surname | Category | Expiration date | +----------Sport | xxxxxxxxxxxxxxxxxxBase | xxxxxxxxxxxxxxxxxxBeginning date | xxxxxxxxxxxxxxxxxxetc...\[/code\]Anyway, it should look something like this:http://www.hoo.hr/kategorizacija.aspx?sportid=32&katid=I&olimpid=3&zupanijaid=0Just click plus sign on the right side of the table and info about certain athlete will pop up (give it a little time, its an old script)This is currently made in a way that ajax loads additional data from database and then inserts a new tr element which contains table element (e.g. \[code\]<tr><td><table>...</table></td></tr>\[/code\]).This is not nice markup and is not searchable by search engines. Is there a better way to achieve this maybe by using description list? (I won't use ajax but rather load additional data for all athletes in one go)
 
Back
Top