Download
Accessibility toolbar
Download the modern toolbar script, or open the full live demo in its own accessible page.
Separate demo page
Try the toolbar on a real page
Open the live demo in a dedicated page with sample content, form controls, keyboard navigation, contrast tools, text controls, and the redesigned toolbar.
Open live demoDemo checklist
- Use Ctrl+F2 to open the toolbar.
- Try contrast and text controls.
- Test keyboard-only navigation.
- Reset settings before leaving.
Download the JavaScript file
Save the toolbar script and host it from your website assets. The file is available as acctoolbar.min.js.
Accessible setup notes
- Keep your page language set with the html lang attribute.
- Keep a visible skip link and focus indicator in your own site CSS.
- Test the toolbar with keyboard-only navigation and screen reader output.
- Pair overlays with real WCAG fixes; do not use a toolbar as your only accessibility plan.
Basic install snippet
Host the script locally and initialize it after the file is available.
<script src="/acctoolbar.min.js"></script>
<script>
window.addEventListener("load", function () {
window.micAccessTool = new MicAccessTool({
link: "/accessibility-statement",
contact: "/contact",
buttonPosition: "right",
forceLang: "en"
});
});
</script>