How to disable autocomplete

Hi Experts,
Please let me know how to avoid autocomplete or history from textInout control.

Hi Vikas,

  The autocomplete should be set to off.

      <input type='text' autocomplete='off' />
      or
       inputElement.setAttribute('autocomplete', 'off');

  Please test that it works in your browser.

Regards,
Vlad Turian