Forum Discussion
PolinaSurkova
3 years agoCommunity Member
Text Entry previous value displayed when course restart
Hello!
I have an unusual problem (unusual for me, of course). I have several text entry in a course, they are assigned text variables. When the user enters a certain value, he jumps to the next sl...
MariaCS
Staff
Hi, Polina.
Thank you for reaching out!
The autofill is based on browser settings and cannot be adjusted from within Storyline.
While you can adjust those settings in your own browser (here are the instructions for Chrome), it won't affect other users. Here's a discussion that might be helpful for what you're looking to do:
PolinaSurkova
3 years agoCommunity Member
Thanks, Maria! This JavaScript on the slide master helped me:
var els = document.getElementsByTagName('input');
for (var i=0; i < els.length; i++) {
els[i].setAttribute("autocomplete", "off");
}