This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: tabindex and accessibility

#35284
Ernest MarcinkoErnest Marcinko
Keymaster

I’m afraid no override is possible for this file. You could use a custom script to remove all tabindexes though – although I am not exactly sure if that resolves it:

add_action('wp_footer', 'wp_footer_asp_custom_remove_tabindex', 9999);
function wp_footer_asp_custom_remove_tabindex() {
	?>
	<script>
	(function($){
		$('*[tabindex]').removeAttr('tabindex');
		setTimeout(function(){
			$('*[tabindex]').removeAttr('tabindex');
		}, 1000);
	})(jQuery);
	</script>
	<?php
}