-
Notifications
You must be signed in to change notification settings - Fork 511
Disable with not working on IE11 (W8.1) #355
New issue
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
Comments
It seems to me that it is a bug in IE11, by now, I'm implementing a very simple workaround (easy to break) but it does work. isIE11 = !!navigator.userAgent.match(/Trident\/7\.0/)
if isIE11
$(document).on 'click', $.rails.linkClickSelector, (event) ->
window.location.href = $(this).attr('href') unless event.defaultPrevented I've also posted the issue in msdn. And setup a fiddle to show the markup I'm using (but was not able to reproduce the bug there). |
I can reproduce this issue every time when the link includes a block element:
Breaks in older IE versions, too. |
I can also reproduce this bug in IE11 and Edge (v. 25.10586.0.0) Like @pekeler I am using the How to fix this issue: You need to set @pekeler The following code should work:
|
The issue is that "some times" (read ~= 1 of 20) clicks do disable the link, but do not navigate.
The link is disabled so the user cannot try again so it is very annoying.
It depends on the time you keep the mouse down and if you click over the text.
I also have a click sound being triggered and it also get triggered, but there is no navigation.
Does anyone have a clue?
The environment is IE11 on Windows 8.1 with Metro interface. (I don't like it but I didn't chose :) )
The text was updated successfully, but these errors were encountered: