Is there anyway to stretch the width of a new row without to stretch the width of parent node (table)?
Structure example:
<table>
<tr>
<td>
<div id="div_1"> Block 1 </div>
</td>
<td>
<div id="div_2"> Block 2 </div>
</td>
</tr>
<tr>
<td>
<div id="div_3"> Block 3 </div>
</td>
<td>
<div id="div_4"> Block 4 </div>
</td>
</tr>
</table>
jQuery code:
var newRow = "<tr><td colspan="2"><div>This is a great row, bla,bla,bla....</div></td></tr>";
$('#div_1').closest('tr').after(html);
I want to put the new row without to stretch the table's width.