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 24756a9 commit daf3f0dCopy full SHA for daf3f0d
ui/jquery.ui.tabs.js
@@ -22,6 +22,10 @@ function getNextTabId() {
22
}
23
24
function isLocal( anchor ) {
25
+ // support: IE7
26
+ // IE7 doesn't normalize the href property when set via script (#9317)
27
+ anchor = anchor.cloneNode( false );
28
+
29
return anchor.hash.length > 1 &&
30
decodeURIComponent( anchor.href.replace( rhash, "" ) ) ===
31
decodeURIComponent( location.href.replace( rhash, "" ) );
0 commit comments