(❀╹◡╹)
[jQuery] sortable width fix 본문
$(".sortable").sortable({
helper: fixWidthHelper,
}).disableSelection();
function fixWidthHelper(e, ui) {
ui.children().each(function() {
$(this).width($(this).width());
});
return ui;
}
'Programing > WEB' 카테고리의 다른 글
[JS] 이메일, 비밀번호 정규식 체크 (0) | 2020.08.20 |
---|---|
[PHP] 한글로 시작하는 파일명, IE에서 pathinfo 사용 시 문제점 해결 (0) | 2020.08.19 |
[ASP] https redirect 처리 (0) | 2020.08.14 |
[PHP] Instagram Refresh Access Token (0) | 2020.07.29 |
[PHP] instagram, facebook API - CURL 속도 개선 (0) | 2020.07.23 |