Assistive Technology
Assistive technology is any device, software, or equipment that helps people with disabilities perform tasks they would otherwise be unable to do, including screen readers, screen magnifiers, switch access devices, voice control software, and braille displays for computer and web access.
In simple terms: Assistive technology is like special tools that help people do things they would have trouble doing on their own. Just like glasses help people see better, a screen reader helps a blind person hear what is on a computer screen, and a special switch lets someone who cannot use their hands still click buttons on a website.
What Is Assistive Technology?
Assistive technology (AT) is any item, device, software, or system that is used to increase, maintain, or improve the functional capabilities of people with disabilities. In the context of web and digital accessibility, assistive technology refers specifically to the tools that people with disabilities use to access, navigate, and interact with computers, websites, mobile applications, and digital documents. The Assistive Technology Act of 1998 (a U.S. federal law) defines assistive technology broadly as "any item, piece of equipment, or product system, whether acquired commercially, modified, or customized, that is used to increase, maintain, or improve functional capabilities of individuals with disabilities." This definition encompasses everything from simple magnifying glasses to sophisticated screen reading software. For web developers and digital product teams, the most relevant categories of assistive technology include: - **Screen readers** — software that converts digital text and interface elements to synthesized speech or braille output (JAWS, NVDA, VoiceOver, TalkBack, Narrator) - **Screen magnifiers** — software that enlarges portions of the screen for users with low vision (ZoomText, Windows Magnifier, macOS Zoom) - **Switch access devices** — hardware that enables people with severe motor disabilities to operate computers using one or two physical switches - **Voice control software** — applications that let users control computers and navigate websites by speaking commands (Dragon NaturallySpeaking, Voice Control on macOS/iOS, Voice Access on Android) - **Refreshable braille displays** — hardware devices that convert on-screen text to tactile braille characters in real time - **Alternative keyboards and pointing devices** — hardware designed for users who cannot use standard keyboards or mice (head pointers, eye-tracking systems, sip-and-puff devices, large-key keyboards) Understanding how these technologies work — and what they need from websites — is fundamental to building accessible digital products.
Why It Matters
The World Health Organization estimates that more than 2.5 billion people worldwide need at least one assistive technology product, a number expected to grow to 3.5 billion by 2050 as populations age. In the United States, the CDC reports that 61 million adults (1 in 4) live with a disability. Many of these individuals rely on assistive technology for daily computer use, web browsing, online shopping, education, employment, and access to government services. Assistive technology is the bridge between a person's abilities and the digital world. A blind person using a screen reader can perform the same tasks as a sighted person — reading email, shopping online, managing finances, participating in social media — but only when websites and applications are built to work with screen readers. When a website breaks this compatibility, it is not just an inconvenience — it is the equivalent of locking the door. From a legal and standards perspective, assistive technology compatibility is at the core of accessibility requirements. WCAG Success Criterion 4.1.2 (Name, Role, Value) specifically requires that all user interface components work with assistive technologies. The ADA's requirement that places of public accommodation be accessible to people with disabilities is operationalized, in digital contexts, through assistive technology compatibility. Section 508 requires that federal technology work with assistive technology. For developers, understanding assistive technology provides motivation and context for accessibility practices. When you add alt text to an image, you are providing information that a screen reader will speak to a blind user. When you ensure keyboard operability, you are enabling switch access, voice control, and screen reader interaction. When you use semantic HTML, you are creating a structure that assistive technologies can parse and present meaningfully. Accessibility guidelines are not abstract rules — they are specifications for interoperability with real tools used by real people.
How It Works
### Screen Readers Screen readers are the most commonly discussed assistive technology in web accessibility. They access the browser's accessibility tree — a structured representation of the page derived from the DOM — and convert it into speech or braille. Screen readers announce element types ("heading level 2," "link," "button"), accessible names (the text content or aria-label), states ("expanded," "checked," "required"), and relationships ("form field, 3 of 7"). Users navigate with keyboard commands: Tab to move between interactive elements, arrow keys to read content, shortcut keys to jump by heading (H), landmark (D), or form field (F). The quality of the screen reader experience depends entirely on the quality of the underlying HTML and ARIA markup. ### Screen Magnifiers Screen magnifiers enlarge a portion of the screen, typically from 1.5x to 16x magnification. Users see a zoomed-in view of a small area and pan around the screen to read content and find interface elements. ZoomText, the leading commercial screen magnifier, also includes a screen reader component for users who benefit from both magnification and speech. For websites, magnification creates challenges when content is not responsive, when important information is spread far apart on the page, or when tooltips and popups appear far from the element that triggered them. Users with high magnification can only see a small portion of the screen at a time, so spatial relationships that are obvious at normal zoom become invisible. ### Switch Access Switch access systems enable people with severe motor disabilities — such as ALS, cerebral palsy, or spinal cord injuries — to operate computers using one or two physical switches. These switches can be activated by any controllable movement: pressing with a hand, foot, or head; blowing into a sip-and-puff device; or even blinking, detected by a camera. The switch interface scans through available actions (typically by highlighting interactive elements sequentially) and the user activates the switch when the desired element is highlighted. This relies entirely on keyboard focus and tab order — if an element is not keyboard accessible, it is not reachable via switch access. ### Voice Control Voice control software allows users to operate computers by speaking commands. Dragon NaturallySpeaking is the most powerful commercial option, while macOS and iOS include built-in Voice Control, and Android offers Voice Access. Users say commands like "Click Sign In," "Press Tab," "Move down," or "Type hello" to navigate and interact. Voice control depends on visible labels for interactive elements. If a button displays "Submit" visually but has no accessible name, or if its accessible name differs from its visible text, voice control fails because the user does not know what command to speak. WCAG 2.5.3 (Label in Name) exists specifically to address this: the accessible name of an element must contain its visible label text. ### Braille Displays Refreshable braille displays are hardware devices with a row of small cells, each containing pins that raise and lower to form braille characters. As the screen reader reads text, the braille display updates in real time. Braille displays are essential for deafblind users (for whom speech output is not an option) and preferred by many blind users who are fluent braille readers. Braille displays work through the screen reader and do not require special website coding beyond what screen reader accessibility already demands. If content works well with a screen reader, it will generally work with a braille display.
Examples
**Screen reader and semantic HTML.** A properly structured web page uses `<nav>` for navigation, `<main>` for primary content, `<h1>` through `<h3>` for headings, and `<button>` for interactive controls. A screen reader user can jump between landmarks, scan the heading hierarchy, and interact with all controls — because the semantic HTML provides the information the screen reader needs. **Voice control and visible labels.** A form has buttons with visible text "Next Step" and "Go Back." A voice control user says "Click Next Step" and the software activates the correct button because the visible label matches the accessible name. If the button instead used an icon with no text and the accessible name was set to "Continue," the user would see an icon, not know what to say, and be unable to proceed. **Switch access and focus order.** A checkout process has a logical tab order: product review, shipping address, payment information, and submit button. A switch access user scans through the elements in this order and can complete the purchase. If the tab order were scrambled due to CSS repositioning without corresponding DOM order changes, the user would encounter elements in a confusing, non-linear sequence. **Screen magnifier and responsive design.** A user with low vision uses ZoomText at 4x magnification. On a responsive website, content reflows into a single column at high zoom, keeping all related information together. On a non-responsive site, the user must pan left and right on every line, losing context and missing content positioned far from the visible viewport.
Common Mistakes
**Designing only for screen readers.** Screen readers are the most discussed assistive technology, but they represent just one category. Failing to consider magnification users, switch access, voice control, and other tools leaves significant gaps in accessibility. **Not testing with actual assistive technology.** Automated testing tools check code patterns but cannot evaluate whether the actual assistive technology experience is coherent. Testing with JAWS or NVDA (Windows), VoiceOver (Mac/iOS), and keyboard-only navigation covers the vast majority of assistive technology scenarios. **Assuming assistive technology users are a tiny population.** People with disabilities represent 1 in 4 U.S. adults, and assistive technology use extends beyond those with permanent disabilities. People with temporary injuries, aging-related changes, and situational limitations also use AT features. Built-in zoom, text-to-speech, and voice control on smartphones mean that millions of people use assistive technology daily, often without thinking of it as such. **Creating separate "accessible" versions.** Building a parallel "accessible" site or "text-only" version instead of making the main product accessible is both technically inferior and potentially discriminatory. Separate versions inevitably fall behind the main site, provide a degraded experience, and signal that accessibility is an afterthought rather than a core quality. **Ignoring WCAG 2.5.3 Label in Name.** This criterion, critical for voice control users, requires that the accessible name of a component contains the visible text. When developers add an `aria-label` that differs from what is visually displayed, voice control users cannot activate the element because they say what they see, not what is programmatically set.
Frequently Asked Questions
- What are the main types of assistive technology for web access?
- The main types are: screen readers (JAWS, NVDA, VoiceOver) that convert text to speech for blind users; screen magnifiers (ZoomText, Windows Magnifier) that enlarge screen content for users with low vision; switch access devices that let users with severe motor disabilities operate computers with one or two switches; voice control software (Dragon NaturallySpeaking, Voice Control on Mac) for hands-free computer operation; and refreshable braille displays that convert on-screen text to tactile braille characters.
- How many people use assistive technology?
- Globally, the World Health Organization estimates that more than 2.5 billion people need one or more assistive technology products, but only 10% of those in need have access to them. In the United States, the CDC reports that 1 in 4 adults has a disability, and many use some form of assistive technology. The assistive technology market is projected to exceed $30 billion globally.
- Do websites need to work with all assistive technologies?
- Websites should be built to work with the major categories of assistive technology by following WCAG guidelines and using semantic HTML. You do not need to test with every product, but your site should be compatible with screen readers, keyboard-only navigation (which enables switch access and voice control), and screen magnification. Testing with JAWS or NVDA on Windows and VoiceOver on Mac covers the most common configurations.
- What is a refreshable braille display?
- A refreshable braille display is a hardware device that sits below or beside a keyboard and has a row of small pins that raise and lower to form braille characters. As a screen reader reads text, the braille display updates in real time, allowing deafblind users or blind users who prefer braille to read content tactilely. Displays range from 14 to 80 cells and cost from $500 to $6,000.
- How does voice control software interact with websites?
- Voice control software like Dragon NaturallySpeaking lets users speak commands to control the computer: 'Click Submit,' 'Tab to next field,' or 'Press Enter.' The software maps spoken commands to keyboard and mouse actions. For this to work, websites need visible labels on interactive elements (so users know what to say), proper focus management, and keyboard operability. If a button has no visible label, the user cannot speak a command to activate it.
Need help making your website ADA compliant?
Our team specializes in ADA-compliant web design and remediation. Get a free accessibility audit today.
Last updated: 2026-03-15