로그인
메뉴
↔
HOME
STUDY
처리중···
카테고리1
프로그래밍
카테고리2
JAVASCRIPT
제목
jquery 드래그로 요소 옮기기
작성자
고성훈
작성일
2021-09-17
$(".sort1").sortable({
items: $('.sort1')
,start: function(event, ui) {
console.log('start point : ' + ui.item.position().top);
}
,update: function(event, ui) {
console.log('end point : ' + ui.item.position().top);
}
});
수정
삭제
목록