E-mail List Archives
Re: Providing accessible names with <title>
From: Yeti
Date: Sep 7, 2023 8:10AM
- Next message: Mark Magennis: "Form fields in a sentence"
- Previous message: Jeremy Echols: "Re: Providing accessible names with
" - Next message in Thread: Mark Magennis: "Re: Providing accessible names with
" - Previous message in Thread: Jeremy Echols: "Re: Providing accessible names with
" - View all messages in this Thread
Hello Listers,
Using the code below I have tested all combinations of the current versions of NVDA, JAWS and Narrator / FF, Edge and Chrome under Windows 10-64 with TTS and braille and could did not find any differences.
But I also have a stomach ache with the use of titles. And this is the reason:
Wherever I look, I find information like "Title provides additional information" or "The title contains descriptive text.".
However, the name of a function is âelementary informationâ for a button. So it doesn't belong in the title.
And so is the label for an input …
Ad Astra
Yeti
Code:
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
Title or not
</title>
</head>
<body>
<h1>
Title or not
</h1>
<p>
Here is an input field with title instead of label:
<input title="titledEdit" type="text" name="titledEdit" id="titledEdit">
Here is an input field with label:
<br>
<label>
labeledEdit
<input type="text" name="labeledEdit" id="labeledEdit">
</label>
<br>
<button>classic</button>
<button title="titled"></button>
<br>
And this is the final line.
</p>
</body>
</html>
- Next message: Mark Magennis: "Form fields in a sentence"
- Previous message: Jeremy Echols: "Re: Providing accessible names with
" - Next message in Thread: Mark Magennis: "Re: Providing accessible names with
" - Previous message in Thread: Jeremy Echols: "Re: Providing accessible names with
" - View all messages in this Thread