[Ajax] Ajax로 불러온 엘리먼트의 이벤트가 작동하지 않을 때
2022. 9. 6. 20:57
프로그래밍/Ajax
Ajax로 불러온 엘리먼트의 이벤트 작동 안하는 경우 $('.ajaxElement').click(function(){ ... }) 위와 같이 코드가 작성되어 있다면 아래의 코드로 바꿔주기👇 $(document).on('click', '.ajaxElement', function(){ ... }) 출처 👉 https://stackoverflow.com/questions/17715274/jquery-click-function-doesnt-work-after-ajax-call