jQuery 동적으로 추가한 객체에 이벤트 핸들러 부착하기
$(document).on으로 해야한다! //이런식으로 써줘야 붙는다. $(document).on("mouseover","a",function(){ $(this).parent().next().css("display","block"); }).on("mouseleave","a",function() { $(this).parent().next().css("display","none"); }); $("a")~//잘 안붙는다 function display(xmlDoc) { $(xmlDoc).find("item").each(function(index,item) { var wrapper = $("").addClass("item"); var title = $("").addClass("title"); var titleTe..