Is there a [universal] way to invoke a default action after calling event.preventDefault()?

Don’t call preventDefault() in the first place. Then the default action will happen after your event handler.

Leave a Comment