I have a form in my website that i did it with wix form.
i want a counter on my home page to everyone see how much has submitted form so i did code below am i doing something wrong ?
let submissionCounter = 0;
$w(‘#MyFormID’).onAfterSave(() => {
submissionCounter++;
$w(‘#MyTextElementID’).text = submissionCounter;
});