diff --git a/js/skip-link-focus-fix.js b/js/skip-link-focus-fix.js index aa431284..5d2ddec6 100644 --- a/js/skip-link-focus-fix.js +++ b/js/skip-link-focus-fix.js @@ -8,14 +8,14 @@ var id = location.hash.substring( 1 ), element; - if ( ! /^[A-z0-9_-]+$/.test( id ) ) { + if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) { return; } element = document.getElementById( id ); if ( element ) { - if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) { + if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) { element.tabIndex = -1; }