After implementing this plugin, everything was running smoothly except for one minor bug that I encountered - the li element was displaying an unexpected height. To replicate this issue, follow these steps: 1. Open the sortable demo in Internet Explorer and inspect the ul list. 2. In the developer tools CSS, add the following styles to the '#sortable' to divide the list into 2 columns:
column-count: 2;
-moz-column-count: 2;
-webkit-column-count: 2;
column-gap: 0em;
-moz-column-gap: 0em;
-webkit-column-gap: 0em;
- Observe that the 4th element is divided in half on each side. Try dragging the 4th item in the list and observe the height of the li element.
Link to the sortable plugin: jQuery-ui-Sortable Demo
I'm looking forward to a quick fix for this issue.