As reported by MichaelBrown here.
Autocomplete can be turned off in most modern browsers. Since it's a html5 attribute we have to use jquery to add it to form items, as the drupal form api does not support the attribute yet.
Adding the following line to closedquestion.js line 12 (inside the Drupal.behaviors.closedQuestion function) should fix the problem:
jQuery('#closedquestion-get-form-for input').attr('autocomplete', 'off');
Comments
Comment #1
jvdkolk commentedhttp://stackoverflow.com/questions/582244/is-there-a-w3c-valid-way-to-di...
Comment #2
HylkeVDS commentedYes, but that requires modifications of all form handling all over the place... You're free to supply a patch of course :)
Comment #3
jvdkolk commented@HylkeVDS: did you already fix this?
Comment #5
jvdkolk commented