From: Michał Gołębiowski Date: Wed, 3 Feb 2016 10:49:19 +0000 (+0100) Subject: Attributes: Add a support comment & fix a link @ tabIndex hook X-Git-Tag: 3.0.0-rc1~87 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F2903%2Fhead;p=jquery.git Attributes: Add a support comment & fix a link @ tabIndex hook Ref gh-2664 --- 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" );