ADA Title III Deep Dive — Public Accommodation and Websites
In this tutorial, you will learn about ADA Title III Deep Dive. We cover key concepts, practical examples, and best practices to help you master this topic.
ADA Title III prohibits discrimination by places of public accommodation, with courts applying it to websites of businesses including retailers, restaurants, hotels, banks, and healthcare providers, requiring accessible digital experiences.
What You'll Learn
You will learn the specific provisions of ADA Title III that apply to websites, the legal theories used to establish website coverage, key court decisions, and practical Compliance steps.
Why It Matters
ADA Title III is the most litigated Accessibility law in the United States. Understanding its application to websites is essential for any business with a public-facing online presence.
Real-World Use
DodaTech's legal team monitors ADA Title III developments and ensures all public-facing products including the Doda Browser website and Durga Antivirus Pro marketing site meet WCAG 2.2 AA.
flowchart TD A[ADA Title III] --> B[Public Accommodation] A --> C[Legal Theories] A --> D[Key Court Cases] A --> E[Compliance Steps] B --> F[12 categories including stores, hotels, banks] C --> G[Nexus theory: website connected to physical] C --> H[Independent theory: website is public accommodation] D --> I[Winn-Dixie 2017, Domino's 2019] D --> J[Rising trend of website-only cases] E --> K[WCAG 2.2 AA compliance] E --> L[Accessibility statement] E --> M[Ongoing monitoring]
Legal Theories for Website Coverage
Nexus Theory
The website is a service of a physical public accommodation. A restaurant's website is covered because the restaurant itself is a public accommodation.
Independent Theory
The website itself is a place of public accommodation regardless of physical locations. This theory has been less successful but gains traction.
Key Court Decisions
Gil vs Winn-Dixie (2017)
First federal trial court ruling that ADA applies to websites. The court required Winn-Dixie to make its website accessible. Later vacated on procedural grounds but influential.
Robles vs Domino's Pizza (2019)
Ninth Circuit ruled that ADA applies to Domino's website and app because they are connected to physical pizza stores. The Supreme Court declined to hear the case, leaving the ruling in place.
What Courts Look For
Courts evaluate whether barriers exist that prevent people with disabilities from accessing the goods and services offered. WCAG violations are evidence of barriers.
function checkADAExposure(businessType, hasPhysicalLocation, wcagLevel) {
const exposure = {
high: [],
medium: [],
low: []
};
if (hasPhysicalLocation) {
exposure.high.push('ADA almost certainly applies (nexus theory)');
}
const coveredTypes = ['retail', 'restaurant', 'hotel', 'bank', 'hospital', 'entertainment', 'gym'];
if (coveredTypes.includes(businessType)) {
exposure.high.push('Business type is explicitly listed in ADA');
}
if (wcagLevel === 'none' || wcagLevel === 'A') {
exposure.high.push('Low WCAG compliance level increases risk');
} else if (wcagLevel === 'AA') {
exposure.medium.push('WCAG AA reduces but does not eliminate risk');
}
return exposure;
}
console.log(checkADAExposure('retail', true, 'AA'));
Expected output:
{
high: ['ADA almost certainly applies (nexus theory)', 'Business type is explicitly listed in ADA'],
medium: ['WCAG AA reduces but does not eliminate risk'],
low: []
}
Practical Compliance Steps
Conduct a WCAG 2.2 AA audit. Fix Level A and AA violations. Publish an accessibility statement. Establish a Process for handling accessibility complaints. Monitor for new violations regularly.
Common Mistakes
1. Thinking a Physical Location Exemption Exists
All 12 categories of public accommodation are covered. Having a physical location makes coverage more likely, not less.
2. Relying on Outdated Case Law
The legal landscape evolves rapidly. What was true two years ago may no longer apply.
3. Not Having a Response Plan
When you receive a demand letter, you need a plan. Have legal counsel identified and a remediation process ready before the letter arrives.
4. Treating Compliance as a One-Time Fix
Plaintiffs revisit sites. Ongoing monitoring is essential.
5. Ignoring Mobile Apps
ADA Title III applies to mobile apps of covered businesses. Mobile accessibility is equally important.
6. Not Training Customer-Facing Staff
Employees who interact with customers should know how to handle accessibility requests and complaints.
7. Failing to Document Good Faith Efforts
Documentation of accessibility work demonstrates good faith and may reduce legal exposure.
Practice Questions
1. What are the two legal theories for applying ADA Title III to websites?
The nexus theory (website connects to physical accommodation) and the independent theory (website is itself a public accommodation).
2. What was the significance of Robles vs Domino's Pizza?
The Ninth Circuit ruled that ADA applies to Domino's website and app, and the Supreme Court declined to hear the case, making it binding law in the Ninth Circuit.
3. Does ADA Title III require WCAG compliance?
The ADA does not mention WCAG, but courts use WCAG 2.1 AA as the de facto standard for measuring compliance.
4. What industries are explicitly covered by ADA Title III?
Retail, restaurants, hotels, banks, hospitals, entertainment venues, gyms, and other categories listed in the statute.
5. Challenge: Review the 12 categories of public accommodation in ADA Title III. Determine which categories apply to your organization and assess your website compliance.
FAQ
Mini Project
Create an ADA Title III compliance plan for a retail business with both physical stores and an e-commerce website. Include audit, remediation, documentation, and monitoring phases with timelines.
What's Next
Learn about Compliance Penalties across different jurisdictions including fines, damages, and market restrictions. Then explore the Legal Project Manager approach to accessibility compliance.
Built by the developers of DodaTech
Doda Browser, DodaZIP & Durga Antivirus Pro