R
Rick Walsh
I have an HTML table in the following format:
<table>
<tr><td>Header 1</td><td>Header 2</td></tr>
<tr><td>1</td><td>2</td></tr>
<tr><td>3</td><td>4</td></tr>
<tr><td>5</td><td>6</td></tr>
</table>
With an XSLT styles sheet, I can use for-each to grab the values in
each row
However, I dont want to grab the very first row - because this isnt
data!
How do I iterate throught each <tr> and ignore the first <tr>??
<table>
<tr><td>Header 1</td><td>Header 2</td></tr>
<tr><td>1</td><td>2</td></tr>
<tr><td>3</td><td>4</td></tr>
<tr><td>5</td><td>6</td></tr>
</table>
With an XSLT styles sheet, I can use for-each to grab the values in
each row
However, I dont want to grab the very first row - because this isnt
data!
How do I iterate throught each <tr> and ignore the first <tr>??