div ボックスにボタンを追加しましたが、新しいボタンにクリック機能を適用できません。この例では、ボタンをクリックして div ボックスの色を変更したいと考えています。
HTML
<ul id="box"></ul>
<button id="add" type="button">Add button!</button>
jQuery
$("#add").click(function() {
$("#box").append(' <button class="color" type="button">change color!</button> ');
});
$(".color").click(function(){
$("#box").css("background","red");
});