diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-02-03 11:49:19 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-02-03 11:49:19 +0100 |
commit | 9cb89bf91d034ec7166d9215e2f80fa765292975 (patch) | |
tree | 7db78f3dbbfe2a4eca684c0ab5d32a91900bd30a /src/attributes | |
parent | f1300f18877f0140994190bb1b3a945fa4b2fd3d (diff) | |
download | jquery-9cb89bf91d034ec7166d9215e2f80fa765292975.tar.gz jquery-9cb89bf91d034ec7166d9215e2f80fa765292975.zip |
Attributes: Add a support comment & fix a link @ tabIndex hook
Ref gh-2664
Diffstat (limited to 'src/attributes')
-rw-r--r-- | src/attributes/prop.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/attributes/prop.js b/src/attributes/prop.js index 15128b8ce..237e4130f 100644 --- a/src/attributes/prop.js +++ b/src/attributes/prop.js @@ -57,9 +57,10 @@ jQuery.extend( { tabIndex: { get: function( elem ) { + // Support: IE 9-11 only // elem.tabIndex doesn't always return the // correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ // Use proper attribute retrieval(#12072) var tabindex = jQuery.find.attr( elem, "tabindex" ); |