This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/js/skip-link-focus-fix.js

32 lines
683 B
JavaScript
Raw Normal View History

/**
* File skip-link-focus-fix.js.
*
2015-08-03 19:14:14 +00:00
* Helps with accessibility for keyboard only users.
*
* Learn more: https://git.io/vWdr2
*/
2016-11-26 17:42:51 +00:00
(function() {
var isIe = /(trident|msie)/i.test( navigator.userAgent );
2013-03-07 14:10:13 +00:00
2016-11-26 17:42:51 +00:00
if ( isIe && document.getElementById && window.addEventListener ) {
window.addEventListener( 'hashchange', function() {
var id = location.hash.substring( 1 ),
element;
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
return;
}
element = document.getElementById( id );
2013-03-07 14:10:13 +00:00
if ( element ) {
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
element.tabIndex = -1;
}
2013-03-07 14:10:13 +00:00
element.focus();
}
2013-03-07 14:10:13 +00:00
}, false );
}
})();