Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/terrylinooo/jquery.disableAutoFill
https://github.com/terrylinooo/jquery.disableAutoFill
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/terrylinooo/jquery.disableAutoFill
- Owner: terrylinooo
- License: mit
- Archived: true
- Created: 2021-02-19T18:47:56.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-02-19T19:10:58.000Z (over 3 years ago)
- Last Synced: 2024-04-25T05:01:25.696Z (7 months ago)
- Language: JavaScript
- Size: 869 KB
- Stars: 8
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jquery.disableAutoFill
### Notice: This package is abandoned, please visit [disableautofill.js](https://github.com/terrylinooo/disableautofill.js)
---
The easiest solution for disabling Google Chrome auto-fill, auto-complete functions.
Document Transations: [English](./README.md) | [繁體中文](./docs/README_zh_TW.md) | [简体中文](./docs/README_zh_CN.md)
I've spent serveral hours surfing online to look for solutions in order to disable Google Chrome auto-fill, auto-complate functions such as the screenshot below.
![Image](https://i.imgur.com/j5Mw1ly.png)
After having tried all possible solutions I can find on Stackoverflow, howerver, they are outdated and not working. Finally I figured out that Google Chrome forces dropping the submission history while a form contains `type="password"` field, so this plugin is to do the following steps:
- Replace `type="password"` to `type="text"` and then replace the text with asterisks.
- Add an attribute `autocomplete="off"` on form.
- Randomize the input `name` value to prevent Chrome or other third-party extensions to remember what you filled.### Install
#### Npm
```
npm install disableautofill
```#### Bower
```
bower install jquery.disableAutoFill
```#### CDN
``````
### Demo
- [Login Form](https://terrylinooo.github.io/jquery.disableAutoFill/)
- [Login Form & jQuery Validate plugin](https://terrylinooo.github.io/jquery.disableAutoFill/jquery-validate.html)
- [Login Form & HTML 5 native form validation](https://terrylinooo.github.io/jquery.disableAutoFill/html5-form-validate.html)Check out the demo page to see how it works.
### Usage
HTML
```html```
JS
```javascript
$('#login-form').disableAutoFill();
```### Options
option | default | note
---- | --- | ---
passwordField | - | Dom Element by ID or by ClassName, if not set, disableAutoFill will automaticlly pick up the [**type=password**] field.
submitButton | - | Dom Element by ID or by ClassName, if not set, disableAutoFill will automaticlly pick up the [**type=submit**] button.
hidingChar | ● | Character use to hide real password value.
debugMode | false | If true, printing form serialized data in console log instead of submitting.
randomizeInputName | true | This plugin will randomize input name attribute by default. It will restore back to original field name when submitting form. This is for preventing auto completion for all browsers (includes third-party auto-completeion extensions) not just for Google Chrome.
html5FormValidate | false | Set this option to "true" to enable HTML 5 native form validate ( `required`,`pattern` etc...)
callback | - | To validate form fields or something you can do.### Example
```javascript
$('#login-form').disableAutoFill({
passwordField: '.password',
callback: function() {
return checkForm();
}
});function checkForm() {
form = document.getElementById('login-form');
if (form.password.value == '') {
alert('Cannot leave Password field blank.');
form.password.focus();
return false;
}
if (form.username.value == '') {
alert('Cannot leave User Id field blank.');
form.username.focus();
return false;
}
return true;
}
```### Suggestion
This plugin may not work while the javascript render speed is slow.
Chrome detects the **type="password"** and still assign the "remember me" to the form elements.You can modify the input type="password" to "text", and add a class (for example: ".password")
```html
```
```javascript
$(function() {
$('.login-form').disableAutoFill({
passwordField: '.password'
});
});
```
https://jsfiddle.net/terrylinooo/hhgzbsvy/### License
MIT
### Authors
* Terry Lin (terrylinooo)