I have the following code:
$('#form1').live('submit.check', function()
{
});
Now when I try to do the following:
$('#form1').unbind('submit.check');
this event is still associated with the form. Can't untie the event that .live () used to bind it?
source
share