On hashchange, make sure we set focus for elements that need it. Essentially the same as 136, but without jquery
This commit is contained in:
parent
3e717fa9c2
commit
6ee6126089
2 changed files with 27 additions and 0 deletions
25
js/skip-link-focus-fix.js
Normal file
25
js/skip-link-focus-fix.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
( function() {
|
||||
var is_webkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1;
|
||||
var is_opera = navigator.userAgent.toLowerCase().indexOf('opera') > -1;
|
||||
var is_ie = navigator.userAgent.toLowerCase().indexOf('msie') > -1;
|
||||
|
||||
if((is_webkit || is_opera || is_ie ) && typeof(document.getElementById) !== 'undefined' ) {
|
||||
var eventMethod = (window.addEventListener) ? 'addEventListener' : 'attachEvent' ;
|
||||
window[eventMethod]("hashchange", function(event) {
|
||||
|
||||
var element = document.getElementById(location.hash.substring(1));
|
||||
|
||||
if (element) {
|
||||
|
||||
if (!/^(?:a|select|input|button|textarea)$/i.test(element.tagName)) {
|
||||
element.tabIndex = -1;
|
||||
}
|
||||
|
||||
element.focus();
|
||||
}
|
||||
|
||||
}, false);
|
||||
|
||||
}
|
||||
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue