This page is loaded as a part of the removeAccessKeys gadget, used by 11,565 users.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// **********************************************************************// ** **// ** changes to this file affect many users. **// ** please discuss on the talk page before editing **// ** **// **********************************************************************//Deactivating access keys, see [[Wikipedia talk:WikiProject User scripts/Scripts/removeAccessKeys|talk page]]addOnloadHook(function(){varcolumnOne=document.getElementById('column-one');if(!columnOne)return;removeKeys(columnOne.getElementsByTagName('a'))removeKeys(document.getElementsByTagName('input'))removeKeys(document.getElementsByTagName('label'))})functionremoveKeys(nodeList){varel;for(vari=0;i<nodeList.length;i++){el=nodeList[i];if(!el.accessKey)continue;if(!window.removeAccessKeys||removeAccessKeys.indexOf(el.accessKey)>=0){el.accessKey='';//el.setAttribute('accessKey', ''); if(el.title)el.title=el.title.replace(tooltipAccessKeyRegexp,'');}}}//