Hi,
I’m trying to store the text that users search for on my site and am using the below code to write the text to a collection called Searches.
This code works perfectly in Preview, but when published doesn’t write anything to the collection.
Sandbox Mode is Off.
Can anyone suggest why it doesn’t work please ?
Thanks in advance
function storeSearches () {
( async () => {
const item = { SearchText : $w ( “#searchbar” ). value };
const result = await wixData . insert ( ‘Searches’ , item );
})();
}