I need to build a list of people with basic informations on a table, like name, and when one clicks the row it will expend details between the clicked row and the next one.
For a more visual example see jExpand jQuery plug-in which does exactly that, but on a regular html table.
Here is a jsfiddle with the code
My goal is when I click on Alice's name a new div is created between Alice and Bernard.
This new div must be of the width of the table. And this is the big deal. No colspan in css table.
I'm thinking of a place holder dummy row with a second absolute div on top but can't really figure any elegant way to do it.