Frage

I'm new to JAWS, I have written javascript code on pressing spacebar for a particular button, But on JAWS on tabbing each button it says "press spacebar to activate" for all the buttons.

I need to avoid saying that message. any idea

thanks in advance

War es hilfreich?

Lösung

Actually, this is called a tutor message and can't (and shouldn't!) be removed by a web developer. Beginners hear this on each and every button in Windows, not only on the web.
So if you want to suppress this on your system, just turn off tutor messages (in the JAWS main menu, it's the first set of radio buttons in the Basics dialog).

Andere Tipps

You can do in document ready javascript:

$(document).ready(function () {
   $(document).keydown(function (e) {
            if (e.keyCode == 32) {
                //Here your code to call JAWS
            }
        });
})
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top