자바스크립트

클릭 이벤트

yureka56 2015. 2. 26. 15:02
$( "#other" ).click(function() {
$( "#target" ).click();
});<이미 페이징된 화면의 클릭이벤트>
$(document).on("click",".other",function(e){    $( "#target" ).click();});<나중에 페이징된 화면도 클릭이벤트 적용>