
A web developer has published a small, free piece of code called <rich-input> that gives a website the kind of search box you see on GitHub or in Gmail: you can type ordinary words, but you can also narrow things down with structured filters like year:2024 or label:"Warp Records". It suggests the filter names and the allowed values as you type, and it highlights them inside the box.
What this changes for you
For most North Phoenix businesses, honestly, nothing. If your site has ten pages and a contact form, a plain search box is already more than enough, and adding a filter syntax would confuse people rather than help them.
Where it starts to matter is if you have a lot of one kind of thing and customers who need to sift through it. An equipment rental yard with hundreds of items. A realtor with a long listings page. A parts supplier. A gallery with an inventory. In those cases, the search box is the whole experience, and if it's bad, people leave.
The practical point for you is not this specific tool. It's the question underneath it: can people actually find things on your site? Most small business sites fail here in boring ways. Search that only matches exact words. Filters that reset when you hit the back button. A results page that doesn't say how many results there are. Those are worth fixing long before anyone reaches for a fancy input field.
One thing worth noting about this particular release: it's built as a standard web component, which means it's a self-contained bit of code that drops into a page without dragging in a large framework behind it. That's a good sign. Lightweight additions age better and slow your site down less. It's also a one-person side project, which means no guarantee anyone maintains it next year. That's a real consideration if you're putting it on a page that matters.
What to do
Nothing today. But go to your own site, use your own search box, and try to find something the way a customer would. If it takes you more than a few seconds, that's the conversation to have with your developer, not this tool specifically.
Reported by:


