https://jsfiddle.net/hjcsnrs3/1/
I created the above script to explain my problem. I use jQuery to sort the drag and drop elements horizontally. Works great in Chrome / FF. But in IE, especially IE9, whenever I drag an item, it goes to the next line. Each drop of the drag creates a new row.
$( function() { $( "#sortable" ).sortable({ items: "> div", opacity: 0.8, placeholder: "placeholder", tolerance: "pointer", helper: "original", revert: true, axis: "x" }); $( "#sortable" ).disableSelection(); });
javascript jquery css jquery-ui
CFML_Developer
source share