Appearance
Installation
Get BrowseAid Widget up and running on your website in minutes with our simple integration options.
Quick Installation
The fastest way to add BrowseAid Widget to your website:
CDN Installation (Recommended)
Add this single script tag to your HTML <head> section:
html
<script src="https://storage.browseaid.com/latest/assets/index.js" type="module"></script>That's it! The widget will automatically initialize with default settings.
Verification
After installation, verify the widget is working:
- Visual Check: Look for the accessibility icon (usually in the bottom corner)
- Console Check: Open browser dev tools and check for any errors
- Functionality Test: Click the widget icon to open the accessibility panel
Troubleshooting
Widget Not Appearing
- Check Console Errors: Look for JavaScript errors in browser dev tools
- Verify Script Path: Ensure the script URL is correct and accessible
- Check Network Tab: Verify the script is loading (status 200)
Script Loading Issues
html
<!-- Add error handling -->
<script
src="https://storage.browseaid.com/latest/assets/index.js"
type="module"
onerror="console.error('Failed to load BrowseAid Widget')"
></script>Content Security Policy (CSP)
If you're using CSP, add these directives:
script-src 'self' https://storage.browseaid.com;
style-src 'self' 'unsafe-inline';Performance Considerations
Async Loading
For better page performance, load the widget asynchronously:
html
<script async src="https://storage.browseaid.com/latest/assets/index.js" type="module"></script>Defer Loading
Or defer loading until the page is parsed:
html
<script defer src="https://storage.browseaid.com/latest/assets/index.js" type="module"></script>Next Steps
Now that you have the widget installed:
- ⚙️ Learn about Configuration Options
- 🛠️ Explore the Tools Documentation to understand all features