[jQuery] jquery live, bind, delegate를 on 대체
live() 함수가 jquery 1.9.x부터 deprecated 되면서 live, bind, delegate함수를 on함수로 마이그레이션 //Bind$("#요소").bind("click", function(e){});$("#요소").on("click", function(e){}); // Live$("#요소").live("click", function(e){});$(document).on("click", ""#요소"", function(e){}); //Delegate$("#요소").delegate("a", "click", function(e){});$("#요소").on("click", "a", function(e){});
2019. 3. 5.