In the event handler, how can I trigger the default action. That is, is there something opposite .event.preventDefault()?
.event.preventDefault()
use the bind function to handle any events to prevent default actions
$('#id').bind('click', function() { //your action goes here });
Then do not use event.preventDefault();and usereturn true
event.preventDefault();
return true