/*
script의 초기화 함수는 HTML렌더링 이후 한 번만 적용 되기 때문에
document나 부모 자체에 이벤트를 걸어줘야 한다.
*/

$(staticAncestors).on(eventName, dynamicChild, function() {
	//to do
});

$('.부모 이름').on('click', '.걸고 싶은 대상', function() {
	//to do
});

$(document).on("click", "#secondButton", function() {
	//to do
});