Drag and drop table content with JavaScript
With few lines of JavaScript, you can drag and drop table content. Content of the HTML table cells can be dragged to the another table cell or another table. It isn't so difficult to define onMouseMove event and change top / left element styles to move the object. In case with table, you will have to determine destination table cell. Attaching onMouseOver handler to the table cells will not help, because browser will not fire events to the elements beneath the dragged object.