Forum Discussion
Text entry bug in latest update
Hi there, Daniel!
I respect your decision and will keep you posted on our progress with both bugs.
For now, we're happy to explore your file for any tailored options. As always, you can connect with our Support team through this case link.
- DanielHolland5 years agoCommunity Member
I was able to workaround this with some javascript.
var els = document.getElementsByTagName('input');
for (var i=0; i < els.length; i++) {
els[i].value='';
els[i].setAttribute("onfocus", "this.value=''");
els[i].setAttribute("autocomplete", "off");
}
Not the most ideal, but it works- MarkAnthonyChes4 years agoCommunity Member
Hello Daniel,
I am having the same problem. Could you tell me where you placed your script? And it seems that "input" would be the variable name attached to the text entry field if I imagine correctly....?
Thanks in advance!
- MarkAnthonyChes4 years agoCommunity Member
Hello Daniel,
I've tried your code but it doesn't work for me and breaks all my other javascript.....
Any suggestions? Is there a problem with the quotation makes or something???
Thanks in advance!