I have working in jquery sortable, all are working fine. but empty div will not accept the draggable content.
Here My jquery,
$( ".dropfalse" ).sortable({
connectWith: ".dropfalse",
revert: true,
tolerance: 'pointer',
placeholder: "ui-state-highlight",
cursor: 'pointer',
dropOnEmpty: true,
forcePlaceholderSize: true
});
$('#sortable').disableSelection();
Any suggestion.
Are you sure, the target div does not have zero dimensions, probably height.