It is possible to use currentTarget
of the event
.
Example shows how to proceed with form submit. Likewise you could get function from onclick
attribute etc.
$('form').on('submit', function(event) {
event.preventDefault();
// code
event.currentTarget.submit();
});