통합검색

javascript

레이어 드래그 앤 드롭

[!]javascript[/!]
window.onload = () => {
    $(init);
    function init() {
    $('#makeMeDraggable').draggable({
        containment: '#content',
        cursor: 'move',
        snap: '#content'
    });
    }
};