Disable recent text lists in browser

Possible Duplicate:
How do you disable browser Autocomplete on web form field / input tag?

I am working on a .NET application using C#. When a user starts deleting text from a textbox the browser shows a small list (almost like a drop down list) of recently entered data. The project owners what this removed. I believe it is done automatically by the browser because I never recorded data or implemented this in my design. Does anyone know the name of this built in feature or even more precisely how to disable it entirely (preferably across all browers). If at all possible I would like to accomplish this on the client side in JQuery. I say this because there are places where I dynamically add textboxes.


Turn off autocomplete .

<input type="text" name="myInput" autocomplete="off" />

Take a look the MDN docs.

链接地址: http://www.djcxy.com/p/26444.html

上一篇: 清晰的输入栏的提示框

下一篇: 禁用浏览器中的最近文本列表