Do any experts have a code that will enable me to open my search bar on a new tab on my wix online store? I spoke with an agent from wix today and they have told me there may be a code? Iv never heard of this before but hopefully someone can help?
Hey there ,
What they’re probably mean is that you can use the code if you want to use input fields instead of Wix Search, and yes, you can by setting the target of the link to be blank, here’s an example:
const searchTerm = $w('#searchBar').value;
$w('#search').link = `/search?term=${searchTerm}`;
$w('#search').target = '_blank';
Hope this helps~!
Ahmad