I tried to update a HTML div elevement wrapping around a table row inside a table.
<table> <tr> <td>Pomme</td> </tr> <div id="placeholder"> <tr> <td>SomethingElse</td> </tr> </div> </table>
I wasted 1 hour to find out why my ajax calls aren’t updating the right table row.
Apparently it’s not valid HTML. The div will always be on top and then the table tag.
A workaround that I found to put a placeholder id inside a table is by using <tbody>. So simply substitute the div with a tbody tag and you’re done.

