When the dragged <li> is out of the droppable #div1, how can I force the dragged <li> to drop?
$("li").draggable();
$("#div1").droppable({
tolerance:'pointer',
drop:function (event,ui) {
alert("dropped")
},
out:function (event,ui){
//if out then drop the li
}
});