$(".sd").dblclick(function() {
$(this).parent().remove();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table width="750" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="3" bgcolor="#333" class="st">Size Chart</td>
</tr>
<tr>
<td width="116" bgcolor="#FCF2E8" class="se">US Sizes</td>
<td width="100" bgcolor="#FCF2E8" class="se">UK sizes</td>
<td width="100" bgcolor="#FCF2E8" class="se">Foot Length (cm)</td>
</tr>
<tr class="row-edit">
<td height="20" bgcolor="#FEFDF8" class="sd">17</td>
<td height="20" bgcolor="#FEFDF8" class="sd">27</td>
<td height="20" bgcolor="#FEFDF8" class="sd">25</td>
</tr>
</table>
Currently, a double click on the sd class removes the entire row. I would like to enhance this functionality so that a double click on the se class adds a new row.