e.target
- 실제로 이벤트가 발생되어지는 엘리먼트
- 같은지 다른지 비교할 때 is 사용
$("e.target").is("선택자")
Unbind
- 선택자.unbind('이벤트')
- 선택자의 이벤트를 사용하지 않을 때 사용
$("선택자").unbind('click');
Math.random()
0 <= Math.random() < 1
Math.floor(Math.random() * (max-min+1)) + min
empty
- 선택자.empty()
- 선택자 안에 들어있는 내용물을 모두 비운다.
$("선택자").empty();
정리
- 01_eventHandling -> chap04_unbind_random
-> 01_event.target_unbind.html, 01.js, 01.css, 02_event.target_empty_random.html, 02.js, 02.css