HEX
Server: Apache
System: Linux server.tanduk.space 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: coachou (1042)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/coachou/www/wp-content/themes/colormag/assets/js/skip-link-focus-fix.js
/**
 * 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
			);
		}
	}
)();