Is there a way to submit a form on keypress/enter
while using
ng-model-options="{updateOn: 'submit'}"
Here is the template:
<form ng-model-options="{ updateOn: 'submit' }">
<input type="submit" value="submit" style="visibility:hidden;" />
...
The submit event is not being captured in IE. Testing conducted on IE11.
Are there any workarounds for this issue?