Forum Discussion
TimDanes
5 years agoCommunity Member
Auto-complete appearing in Text Entry boxes
Problem that needs solving: Multiple users complete the same quiz on the same computer. When completing the quiz after the first time, the Text Entry box has auto-complete options appearing in the...
TabithaMountain
Community Member
Any additional suggestions? I've added the javascripting to each slide master and included the suggested trigger, but am still having trouble with auto-fill using Chrome.
TimDanes
4 years agoCommunity Member
As per @Matthew Bibby's suggestion, I use the following code for mine.
var els = document.getElementsByTagName('input');
for (var i=0; i < els.length; i++)
{
els[i].setAttribute("autocomplete", "off");
}
Keep in mind that it is the browser (not the Storyline file) that is auto-correcting.
i.e. When I add this code, the browser will still 'remember' the Storyline object, and so auto-correct appears for me until I clear the cache, but doesn't appear for new users.