I've implemeted jquery datepicker on a textbox and datepicker is poping up with browser's default autocomplete that's confusing for the usera. I've tried autocomplete="off" but it's not working.
Asked
Active
Viewed 130 times
-5
-
Please post your code so we can see what you have. – freginold Nov 10 '16 at 18:46
1 Answers
1
In the HTML for the textbox element, add autocomplete=off
http://www.w3schools.com/tags/att_input_autocomplete.asp https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion

Scott Marcus
- 64,069
- 6
- 49
- 71
-
-
-
This is a standard part of the HTML5 specification. It will work in any browser that supports that specification. It does work in Chrome 17+ and FF 4+ – Scott Marcus Nov 10 '16 at 18:15
-
-
@TaufeekAhmadKhan if you post your code people can help troubleshoot the problem. – freginold Nov 10 '16 at 19:46