Is it possible to create a search bar on WIX site that is similar to the one on Corvid site? Basically I would like to have a magnifying glass icon that expands on click with a field for typing. I tried the SiteSearch app that is available on WIX now and I really don’t like it because modifying options are limited. Any suggestions would be greatly appreciated.
1 Like
Yes. It is possible.
- Put a text userInput next to the search icon.
- Make the userInput hidden on load.
- Add an onClick() event handler to the search icon.
- $w(“#searchIcon”).onClick((event) => {$w(“#userInput”).show(“slide”, {direction: “right”})});
1 Like
Wow thank you! I don’t understand any of this though Are there any tutorials that can help me to learn how to do this?
Thanks JD!