BlindGuyNW 1 points 6y ago
Just as an FYI, there are a couple iffy practices mentioned here. Tabindex in general should only ever be set to 0 or, perhaps, -1. It can really confuse expected behavior if you set it explicitly. See, for instance, http://webaim.org/techniques/keyboard/tabindex, among others.
Aria DIV like this is equally discouraged. It won't be accessible to non-screen reader keyboard users without extra work, and <button> and <input> are already perfectly serviceable.
It's just worth remembering that screen readers aren't the only assistive technology around, and some techniques can hurt other disabled users if you aren't careful.
KidA001 1 points 6y ago
Sorry, just seeing your post is for braille display users, the above was intended for screen readers but maybe it's helpful.