make browsers for the blind or any other accessibility browser
There are no browsers targeted at people with disabilities these days. Previously, there were several projects, but major manufacturers of assistive technologies (AT) came together and got their software, working first with IE, and then with Firefox. You have a chance to use Chrome or Opera with AT, support hits or misses.
CSS and JavaScript support, only CSS, only JavaScript or not?
It really comes down to using JS, CSS, and AT. All in all, AT is great with CSS. There are four areas that can cause problems: color / contrast, display:table
, display: none
and visibility:hidden
. Since the first two are not part of the question, we will skip them. JAWS only declares display:none
or visibility:hidden
content on <span>
. I will not comment too much about JS, but WebAIM has an article providing an overview of JS and accessibility .
is to add multiple fields with random names and hide them with CSS by adding style="display : none;"
into an HTML element.
I assume that you are correctly adding <label>
to all of your form elements. Please add them to the honey bank fields only if they are read. I would add “ignore this field” to <label>
.
Reading:
On-screen readers and display: no
JAWS, Window-Eyes and display: none: Return to 2007
source share