ボタンにクラスを追加し、onclick イベントで起動しようとしましたが、動作しませんでした。非常に単純なコードで、イベントがバインドされないのはなぜですか?
http://jsfiddle.net/davidThomas/n2WUn/3/
$(".remove-participant").on("click",function(){
$(this).html('Approve');
$(this).toggleClass('add-participant');
});
$(".add-participant").on("click",function(){
alert('why no alert?');
$(this).html('Waitlist');
$(this).toggleClass('add-participant');
});