Once I've fired an evt.preventDefault(), how can I resume defualt actions?
feedback
|
|
I would suggest the following pattern:
...unless I'm missing something. | |||
|
feedback
|
|
Have you looked at this question & answer? How to reenable event.preventDefault? | |||
|
feedback
|
|
As per commented by @Prescott, the opposite of:
Could be: Essentially equating to 'do default', since we're no longer preventing it. Otherwise I'm inclined to point you to the answers provided by another comments and answers: how to enable default after event.preventDefault()? How to reenable event.preventDefault? Note that the second one has been accepted with an example solution, given by redsquare (posted here for a direct solution in case this isn't closed as duplicate):
| ||||
|
feedback
|
|
I supose the "opposite" would be to simulate an event. You could use Following Mozilla's example:
Ref: document.createEvent jQuery has
| ||||
|
feedback
|
and its opposite
cheers! | |||
|
feedback
|