I have a table each row has an id and several td's containing spans
e.g
<tr id="row"><td><span class="first name">myfirstname<span class="surname">mysurname</span></td><td><span class="street">mystreet</span><span class="town">mytown</span></td>
What I wan't to do is when passed a rowid traverse the row and create a key value array of the span classnames and the span values.
currently I can go find each thing individually which is very cumbersome.