Desative JavaScript autocompleto
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );
Mobile Star
someForm.setAttribute( "autocomplete", "off" );
someFormElm.setAttribute( "autocomplete", "off" );
# If want to turn off auto complete for some inputs and not all
#listen on the focus event on each input, access
#the target and and turn off autocomplete accordingly
e.target.offsetParent.autocomplete = "off";