Widget Integration
Learn how to integrate Hum into your website using our widget
Adding Hum to Your Website
The Hum widget provides a seamless way to integrate internet service provider discovery into your website. With just a few lines of code, you can add a fully functional internet service search interface to your site.
Overview
The Hum widget is a JavaScript component that can be embedded into any web page. It provides a seamless interface for users to:
- Check internet service availability at their address
- View available plans and pricing
- Order internet service directly through the widget
Installation
1. Add the Widget Container
First, add a container div with a specific ID where the widget will be rendered:
2. Add the Widget Script
Add the Hum widget script to your HTML page:
3. Initialize the Widget
After adding the script, you’ll need to initialize the Hum widget instance inside a script tag with your API key and container element:
Address Data Format
The widget expects address data in a specific JSON format. Here’s the structure with explanations for each field:
Field Descriptions
- street1: The primary street address. This is required and should contain the street number and name.
- street2: Optional secondary address information. Use this for apartment numbers, suite numbers, or any additional address details.
- city: The city name. Required field.
- state: Two-letter state code (e.g., “MI” for Michigan). Required field.
- zip: The ZIP code. Required field.
- campaign_id: Optional identifier for tracking purposes. Can be used to associate the widget interaction with specific marketing campaigns or sources. This campaign_id will be embedded in the UTM parameters sent to the ISP and will be available in your Hum tracking.
Integration Examples
Example 1: Form-Based Integration
Here’s an example of how to integrate the widget with an HTML form:
Example 2: Direct JSON Bundle Integration
You can also pass the address data directly as a JSON bundle without using a form:
Address Validation
The widget works best with validated addresses. You can use any address validation service (like SmartyStreets, Google Places API, etc.) to validate addresses before passing them to the widget.
Error Handling
The widget initialization can fail for several reasons:
- Invalid address data
- Network connectivity issues
- API rate limiting
- Invalid API credentials
Always wrap the widget initialization in a try-catch block to handle potential errors gracefully.
Styling and Customization
The widget is designed to be responsive and will adapt to its container’s dimensions. You can control the widget’s appearance by styling its container element:
Best Practices
- Container Element: Always include a named container div with the correct ID
- Address Validation: Always validate addresses before passing them to the widget
- Error Handling: Implement proper error handling for widget initialization
- Loading States: Show appropriate loading states while the widget initializes
Troubleshooting
If you encounter issues with the widget:
- Check that the container div with ID ‘hum-widget’ exists on the page (or matches the ID you assign to the containing div)
- Verify that your API key is valid
- Check the browser console for error messages
- Verify that the address data is properly formatted
- Ensure the widget script is loading correctly
- Check for any network connectivity issues
Next Steps
- Check out our Demo Applications for an example of a Widget integration
For additional support, contact support@letshum.com.
Was this page helpful?