I have two connected tbody elements allowing me to drag rows between two tables. Everything works fine until all rows are removed from either table.
When all rows have
Easy solution (PURE CSS):
tbody:after { content:" "; height:30px; }
Where the blank space is not a stardard blank space. It's an invisible blank character like the following: Invisible characters - ASCII
Worked for me in FF and Chrome.