jQuery で関数を実行したいのですが、終了時にこの関数を変更/再定義します。
HTML
<div id="test">TEST</div>
jQuery
function yes() {
alert('yes');
// I dont know how, but i mean something like :
//this.fn.function yes(){
// alert('no');
//};
};
$('#test').click(function () {
yes();
});