function fn1() { alert(1) } function fn2 { alert(2) } $('#btn').on('click', fn1); $('#btn').on('click', fn2); $('#btn').unbind('click', fn1);