Forum Discussion
AlisonTrehearn
4 years agoCommunity Member
Numeric Entry variables issue
Hi All
I have created a question slide that uses both numeric entry and text entry. The user clicks the submit button and the correct answers are displayed on the next slide with their answers. Al...
MathNotermans-9
4 years agoCommunity Member
Adding to Phil's comment... you offcourse need to select all ( or any specific ) inputfield first.
https://360.articulate.com/review/content/fb2942eb-9b4f-4d53-a44e-b96e07d70575/review
Here you can see it work...
The complete code to set all inputfields in your slide to 'autocomplete off' is this.var inputs = document.getElementsByClassName('acc-shadow-el acc-textinput');
for(var i=0; i< inputs.length; i++){
inputs[i].setAttribute("autocomplete","off");
}
The sample as shown on Review added.
- JCBlanchard3 years agoCommunity Member
Thank you so much! This was driving me crazy!