how do i disable autocomplete

Disable autocomplete on ChronoForms form fields.

Overview

The issue is that browser autocomplete is enabled on specific form inputs.
Use the Load JS utility to add a script that targets the specific input fields and sets their autocomplete property to off.

Answered
m4 m4smariaoni 29 May, 2014
Hello,

pls how do i disable autocomplete on the forms i have created?
m4 m4smariaoni 29 May, 2014
Answer
i got the solution by going to utilities, drag load js to the load events and put this
    window.addEvent('domready', function() {

$('input_text_2').setProperty('autocomplete', 'off');
$('input_text_3').setProperty('autocomplete', 'off');
$('input_text_4').setProperty('autocomplete', 'off');
      $('input_textarea_8').setProperty('autocomplete', 'off');
 $('chrono_security_answer').setProperty('autocomplete', 'off');

    });
This topic is locked and no more replies can be posted.