jquery toggle calls preventDefault() by default, so the defaults don't work. you can't click a checkbox, you cant click a link etc etc
is it possible to restore the default handler?
In my case:
$('#some_link').click(function(event){ event.preventDefault(); });
$('#some_link').unbind('click'); worked as the only method to restore the default action.
$('#some_link').unbind('click');
As seen over here: https://stackoverflow.com/a/1673570/211514
1.4m articles
1.4m replys
5 comments
57.0k users