-
Notifications
You must be signed in to change notification settings - Fork 20.6k
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
bug with focus() method in a specific case in 3.4.0 #4382
Comments
Thanks for the report. The issue doesn't exist on cc @gibson042 |
@jquery/core Is this something we want to get into 3.4.1? |
More examples here:
The "Focus this" button element should be focused. |
Lines 185 to 191 in 6984d17
I researched this issue and found that when jQuery executes the I tried to delete |
I found that the latest master branch did not have this problem, I analyzed the issue based on jquery3.5.1. Line 37 in e1cffde
So Lines 205 to 211 in e1cffde
I modified the source code and added conditions, if (elem.addEventListener && type != "focus" ){
elem.addEventListener(type,eventHandle);
} After the modification, the problem is fixed. Is this correct? |
Add testcase <!DOCTYPE html>
<html>
<head>
<!--<script src="http://code.jquery.com/jquery-git.js"></script>-->
<script src="http://code.jquery.com/jquery-3.5.1.js"></script>
</head>
<body onload="aa()">
<span>Check the console</span>
<div id="toolbar" tabindex="0" style="width: 200px;display: inline-block;">
<a tabIndex="0" id="foo" >foo</a>
</div>
<script type="text/javascript">
aa = function(){
var toolbar = $('#toolbar');
toolbar.on("focusin", function (ev) {
var element = $("#foo");
if (element.length) {
element[0].focus();
}
});
toolbar.focus();
}
setTimeout(function(){
console.log(document.activeElement.id);
},1000);
</script>
</body>
</html> |
@ygj6 The original test case passes on Your proposed fix won't work, unfortunately. You can run the test suite, I expect multiple failures here. This Line 738 in 6984d17
The issue is only with multiple focus handlers & a re-trigger in the middle and we need to handle that. I have a fix in progress, I'll try to submit a PR today. |
If during a focus handler another focus event is triggered: ```js elem1.on( "focus", function() { elem2.trigger( "focus" ); } ); ``` due to their synchronous nature everywhere outside of IE the hack added in jquerygh-4279 to leverage native events causes the native `.focus()` method to be called last for the initial element, making it steal the focus back. To resolve this, we now skip calling the native method if focus was changed. A side effect of this change is that now `focusin` will only propagate to the document for the last focused element. This is a change in behavior but it also aligns us better with how this works with native methods. Fixes jquerygh-4382 Ref jquerygh-4279
PR: #4813 |
If during a focus handler another focus event is triggered: ```js elem1.on( "focus", function() { elem2.trigger( "focus" ); } ); ``` due to their synchronous nature everywhere outside of IE the hack added in jquerygh-4279 to leverage native events causes the native `.focus()` method to be called last for the initial element, making it steal the focus back. To resolve this, we now skip calling the native method if focus was changed. A side effect of this change is that now `focusin` will only propagate to the document for the last focused element. This is a change in behavior but it also aligns us better with how this works with native methods. Fixes jquerygh-4382 Ref jquerygh-4279
If during a focus handler another focus event is triggered: ```js elem1.on( "focus", function() { elem2.trigger( "focus" ); } ); ``` due to their synchronous nature everywhere outside of IE the hack added in gh-4279 to leverage native events causes the native `.focus()` method to be called last for the initial element, making it steal the focus back. Since the native method is already being called in `leverageNative`, we can skip that final call. This aligns with changes to the `_default` method for the `click` event that were added when `leverageNative` was introduced there. A side effect of this change is that now `focusin` will only propagate to the document for the last focused element. This is a change in behavior but it also aligns us better with how this works with native methods. Fixes gh-4382 Closes gh-4813 Ref gh-4279
If during a focus handler another focus event is triggered: ```js elem1.on( "focus", function() { elem2.trigger( "focus" ); } ); ``` due to their synchronous nature everywhere outside of IE the hack added in gh-4279 to leverage native events causes the native `.focus()` method to be called last for the initial element, making it steal the focus back. Since the native method is already being called in `leverageNative`, we can skip that final call. This aligns with changes to the `_default` method for the `click` event that were added when `leverageNative` was introduced there. A side effect of this change is that now `focusin` will only propagate to the document for the last focused element. This is a change in behavior but it also aligns us better with how this works with native methods. Fixes gh-4382 Closes gh-4813 Ref gh-4279 (cherry picked from commit dbcffb3)
Focus re-triggering in jQuery 3.4/3.5 makes the original element have its focus event propagated last, breaking the re-targeting. Trigger focus in a delay in addition if needed to avoid the issue. This fixes the "interaction between overlay and other dialogs" core dialog test when tested against jQuery 3.4/3.5. Ref jquery/jquery#4382
Focus re-triggering in jQuery 3.4/3.5 makes the original element have its focus event propagated last, breaking the re-targeting. Trigger focus in a delay in addition if needed to avoid the issue. This fixes the "interaction between overlay and other dialogs" core dialog test when tested against jQuery 3.4/3.5. Ref jquery/jquery#4382
Focus re-triggering in jQuery 3.4/3.5 makes the original element have its focus event propagated last, breaking the re-targeting. Trigger focus in a delay in addition if needed to avoid the issue. This fixes the "interaction between overlay and other dialogs" core dialog test when tested against jQuery 3.4/3.5. Closes gh-1946 Ref jquery/jquery#4382
Workaround see select2/select2#5993 and jquery/jquery#4382
* fix spelling * autofocus searchfield in Select2 Workaround see select2/select2#5993 and jquery/jquery#4382 * fix sizing of the Information seat-type
* fix spelling * autofocus searchfield in Select2 Workaround see select2/select2#5993 and jquery/jquery#4382
Hi all,
I just noticed and odd change in the behavior of the focus method in jQuery 3.4.0 compared with 3.3.1, 2.**, and 1.. versions in a specific case when we try to change the focus to the child element in focusin event of its parent. Here is the code and here you can see a code dojo with the issue:
If we use older version or the native focus() method the issue is not present.
Greetings.
Plamen
The text was updated successfully, but these errors were encountered: