1
revert
をtrueに設定してマウスを離したときに、要素の位置を取得する方法を教えてください。マウスリリース時の要素の位置を取得するjQuery draggable
$("#belt").draggable({
handle: "li",
revert: true,
axis: "y",
delay: 150,
topValue: null,
leftValue: null,
start: function() {
this.topValue = $(this).position().top;
this.leftValue = $(this).position().left;
},
stop: function(){
console.log($(this).position().top);
console.log($(this).position().left;
}
});