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.
understrap/js/skip-link-focus-fix.js

34 lines
901 B
JavaScript
Raw Normal View History

2015-08-12 07:06:27 +00:00
/**
* skip-link-focus-fix.js
*
* Helps with accessibility for keyboard only users.
*
* Learn more: https://github.com/Automattic/_s/pull/136
*/
2014-12-10 11:36:38 +00:00
( function() {
var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) {
window.addEventListener( 'hashchange', function() {
2015-08-12 07:06:27 +00:00
var id = location.hash.substring( 1 ),
element;
if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
return;
}
element = document.getElementById( id );
2014-12-10 11:36:38 +00:00
if ( element ) {
2015-08-12 07:06:27 +00:00
if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
2014-12-10 11:36:38 +00:00
element.tabIndex = -1;
2015-08-12 07:06:27 +00:00
}
2014-12-10 11:36:38 +00:00
element.focus();
}
}, false );
}
})();