I'm trying to make my database accessible to blind users and am predictably having a lot of trouble.
I've found that adding role='application', and immediately putting JAWS into forms mode makes the tabbing and behavior of my site a lot more predictable. However, I can't figure out how to get it to read simple text.
For example. Let's say I have a form that looks like this
<form method='post'>
<input type='text' title='First Name' name='firstname'>
<input type='text' title='First Name' name='lastname'>
<div tabindex='0'>In this next section, make sure you do XYZ when filling things out</div>
<select name='question1' title='Question 1'>The Options</select>
<select name='question2' title='Question 2'>The Options</select>
<select name='question3' title='Question 3'>The Options</select>
<input type='submit' value='Submit'></form>
How do I make it so the div "In this next section, make sure..." gets read by the screen reader?