Skip to content

Instantly share code, notes, and snippets.

@adamliptrot-oc
Created May 11, 2020 15:19
Show Gist options
  • Save adamliptrot-oc/38afdd0fd502c0fb5a40b746e6409c15 to your computer and use it in GitHub Desktop.
Save adamliptrot-oc/38afdd0fd502c0fb5a40b746e6409c15 to your computer and use it in GitHub Desktop.
// ---------------------------------------------------
// Introduce direct skip link control, to work around voiceover failing of hash links
// https://bugs.webkit.org/show_bug.cgi?id=179011
// https://axesslab.com/skip-links/
// ---------------------------------------------------
$('.skiplink').click(function(e) {
e.preventDefault();
$(':header:first').attr('tabindex', '-1').focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment