Table:
<table id='t1' style='border:1px solid #000000'>
<tr>
<td><span id='flight_1'>1</span></td><td>1</td>
</tr>
<tr>
<td><span id='flight_2'>2</span></td><td>2</td>
</tr>
<tr>
<td><span id='flight_99'>99</span></td><td>99</td>
</tr>
</table>
I want to find each identifier 'flight_xx', and then create a new line after the line belonging to the identifier 'flight_xx'.
Is this possible with jQuery?
The table is created using the DisplayTag library, and I cannot figure out how to do this.
source
share