autocomple off
Is it possible to set autocomplete=off (html style) on the edit form for a particular (date) field? By autocomplete, I mean the client browser's suggestion for previous dates?
Solution:
You can directly add on an attribute with jQuery attr function like this
$('columName').attr('autocomplete', 'off');