Skip to content

Commit

Permalink
Attributes: Add a support comment & fix a link @ tabIndex hook
Browse files Browse the repository at this point in the history
  • Loading branch information
mgol committed Feb 3, 2016
1 parent f1300f1 commit 9cb89bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/attributes/prop.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ jQuery.extend( {
tabIndex: { tabIndex: {
get: function( elem ) { get: function( elem ) {


// Support: IE 9-11 only
// elem.tabIndex doesn't always return the // elem.tabIndex doesn't always return the
// correct value when it hasn't been explicitly set // 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) // Use proper attribute retrieval(#12072)
var tabindex = jQuery.find.attr( elem, "tabindex" ); var tabindex = jQuery.find.attr( elem, "tabindex" );


Expand Down

0 comments on commit 9cb89bf

Please sign in to comment.