[_s] skip-link-focus-fix.js

skip-link-focus-fix.js

一部のブラウザで、tabキーで操作をするときに、input focusとvisual focusが一致せず、skip to content がうまく動かないバグを修正するためのjavascriptです。

“Skip to content” link changes visual focus, but not input focus #136

Fixing “Skip to content” links

/**
 * File skip-link-focus-fix.js.
 *
 * Helps with accessibility for keyboard only users.
 *
 * Learn more: https://git.io/vWdr2
 */
( function() {
	var isIe = /(trident|msie)/i.test( navigator.userAgent );

	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 );

			if ( element ) {
				if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
					element.tabIndex = -1;
				}

				element.focus();
			}
		}, false );
	}
} )();

ここで使われているhashとは、URLの#以降のことです。

location.hash …… 現在ページURLのハッシュ部分を参照する