Hi Charlie,
If you are referring to the case that the numbers remain in the form when participants move to the next page. One way I would try to handle this issue is to add some javascript code that clears the form input: 1)On the web page you take the screenshot with, right-click the form fields and choose Inspect, then you shall find the id of the form field, for example, it may look like ' <input type="number" id="B_share" ....">' and its id is 'B_share' in this case; 2) Add the following line of code to your script block: document.getElementById("B_share").value =""; it shall be able to clear the form filed when the new page is loaded.
If you are referring to the form autofill feature of the browser, e.g., previously I input number '123', the next time I input '1', the remaining '23' pops up, I am not sure whether there is a way to stop this function on the others' browsers.
Hope this helps.
Best,
Jake