Hello,
pls how do i disable autocomplete on the forms i have created?
pls how do i disable autocomplete on the forms i have created?
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.