We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ca906 commit daacbafCopy full SHA for daacbaf
ui/jquery.ui.tooltip.js
@@ -123,7 +123,10 @@ $.widget( "ui.tooltip", {
123
// if we have a title, clear it to prevent the native tooltip
124
// we have to check first to avoid defining a title if none exists
125
// (we don't want to cause an element to start matching [title])
126
- // TODO: document why we don't use .removeAttr()
+
127
+ // We don't use removeAttr as that causes the native tooltip to show
128
+ // up in IE (9 and below, didn't yet test 10). Happens only when removing
129
+ // inside the mouseover handler.
130
if ( target.is( "[title]" ) ) {
131
target.attr( "title", "" );
132
}
0 commit comments