jQuery

    jQuery::on(), off() Method

    > 기존 이벤트 핸들러함수 : bind(), live(), delegate() ▩ on() method : Occur the click event > using off() method 1 2 3 4 5 6 7 8 Click Me! $( '#test').on('click', function() { // 클릭시 경고창을 출력하는 이벤트 등록 alert('Clicking!'); }) Colored by Color Scripter cs ▩ off() method : Remove the click event > using off() method 1 2 3 4 5 Click Event Remove! $('#test').off('click'); cs 1. webisfree.com/2014-01-03/[jquery]-..