Disable autocomplete by Google Chrome Follow
Google Chrome caches the values entered by the user in the past.
There is an option to stop that feature programmatically.
This can be done by adding the following attribute to <form> tag.
If it does not work try <form autocomplete="chrome-off">,
In the visualizer it can be done automatically by adding the following JavaScript to:
app.common.js on Events.pageChanged event
or or on onload
$("#mainForm").attr("autocomplete", "off");
or
$("#mainForm").attr("autocomplete", "chrome-off");
Comments
0 comments
Please sign in to leave a comment.