Created
December 15, 2013 15:22
-
-
Save njam/7974250 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
function visible(element) { | |
return $.expr.filters.visible(element) && !$(element).parents().addBack().filter(function() { | |
return $.css(this, 'visibility') === 'hidden'; | |
}).length; | |
} | |
function focusable(element, isTabIndexNotNaN) { | |
var map, mapName, img, nodeName = element.nodeName.toLowerCase(); | |
if ('area' === nodeName) { | |
map = element.parentNode; | |
mapName = map.name; | |
if (!element.href || !mapName || map.nodeName.toLowerCase() !== 'map') { | |
return false; | |
} | |
img = $('img[usemap=#' + mapName + ']')[0]; | |
return !!img && visible(img); | |
} | |
return (/input|select|textarea|button|object/.test(nodeName) ? | |
!element.disabled : | |
'a' === nodeName ? | |
element.href || isTabIndexNotNaN : | |
isTabIndexNotNaN) && | |
// the element and all of its ancestors must be visible | |
visible(element); | |
} | |
$.extend($.expr[':'], { | |
focusable: function(element) { | |
return focusable(element, !isNaN($.attr(element, 'tabindex'))); | |
} | |
}); | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment