私は以下のコードを持っています:
$("button").click(function(){
$("button").off('click'); //detach click for the button below
}
次に、<body>
タグの下にこのボタンがあります
<button>PLAY ANIMATION</button>
問題は、このコードを下のどこに配置できるかということです。
$("button").bind('click'); // In other words I want to
//reattach the click event that I just disabled at some later point