🔍 Business Finder Widget Demo

Try searching for a business by name. The widget will suggest verified businesses from Google.

✓ Selected Business

Name:
Address:
City:
State:
Rating:
Place ID:
// Initialize the widget
const finder = new BusinessFinder({
    inputId: 'business_name',
    apiEndpoint: 'api/find_business.php',
    cityFieldId: 'city',
    stateFieldId: 'state',
    onSelect: function(business) {
        console.log('Selected:', business);
    }
});