See Example |
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<form action='/action_page.php' autocomplete='off'>
<input type='text' autocomplete='off' />
</form>
<br>
<input type='submit' value='Submit'>
</form>
</body>
</html>
There are more ways.
Follow the below.
Example:
HTML
<input type='text' autocomplete='off' />
<form action='' autocomplete='off'>
<script>
$('input').attr('autocomplete', 'off');
</script>
Reffered: https://stackoverflow.com/questions/2530/how-do-you-disable-browser-autocomplete-on-web-form-field-input-tags?rq=2
Stop browser autocomplete in HTML text input? | HTML Input Types |
HTML Stop browser autocomplete in HTML text input? | HTML Input Types |
HTML Form Stop browser autocomplete in HTML text input? | HTML Input Types |
Javascript - Stop browser autocomplete in HTML text input? | HTML Input Types |
Read Full: | HTML Input Types |
Category: | Web Tutorial |
Sub Category: | HTML Input Types |
Uploaded: | 10 months ago |
Uploaded by: | Admin |
Views: | 28 |
Tested on: | html4 |