Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In IE11, after clicking a .typeahead_link in the response the UI shows "loading" indefinitely. The clicked link never loads.
.typeahead_link
In other browsers, the "loading" state is shown and the link is followed.
The text was updated successfully, but these errors were encountered:
This happens because click bubbling in IE11 is too slow, and the anchor element is removed from the DOM by a delegated event before the click actually registers. The browser never follows the link but does finish executing the delegated event.
Further details: http://gravitydept.com/blog/unclickable-links-using-bubbling-only
Sorry, something went wrong.
0ce303b
brendanfalkowski
No branches or pull requests
In IE11, after clicking a
.typeahead_link
in the response the UI shows "loading" indefinitely. The clicked link never loads.In other browsers, the "loading" state is shown and the link is followed.
The text was updated successfully, but these errors were encountered: