I have a simple example where i have an input field and i put a blur and change event on it:
input
blur
change
HTML
<
use .off
.off
DEMO
$('input').change(function(e){ alert('change'); e.stopImmediatePropagation(); $(this).off("blur"); //$("input[name='test']").off("blur"); }); $('input').blur(function(e){ e.preventDefault(); alert('blur'); });