Forum Discussion
ThomasUmphres
7 months agoCommunity Member
"Saved Info" in Fill in the Blank Text Box
I have a course published in Storyline with fill in the blank text boxes where they need to do some math and then put the correct answer in and submit the question. However, if they've already done t...
Nedim
7 months agoCommunity Member
Does this happen in all browsers, or is it specific to one? Try executing this JavaScript when the timeline starts on this slide:
var inputs = document.querySelectorAll('.acc-textinput');
inputs.forEach(function(input) {
input.setAttribute('autocomplete', 'off');
input.setAttribute('autocorrect', 'off');
input.setAttribute('spellcheck', 'false');
});
ThomasUmphres
7 months agoCommunity Member
I've just tested it on Edge.
I'll have to try that script if our IT people say there's no way to fix it on their end. But it will be a lot of slides unfortunately. Thanks.