Я хочу сделать мою таблицу tr перетаскиваемой вверх / вниз с contenteditable td, но она не работает, как ожидалось
<div id="" class="table-editable" data-action="">
<table>
<thead>
<tr>
<th>Discount Title</th>
</tr>
</thead>
<tbody>
<tr>
<td contenteditable="true"></td>
</tr>
</tbody>
</table>
</div>
<script type="text/javascript">
$(".table-editable").find("tbody").sortable({
items: "> tr",
appendTo: "parent",
cancel: '[contenteditable]'
});
</script>