Detect browsers autofill
TLDR
- Import script in the head
<head>
...
<script src="https://unpkg.com/detect-autofill/dist/detect-autofill.js"></script>
...
</head>
- add event listeners
- do your things...
document.addEventListener('onautocomplete', function(e) {
e.target.hasAttribute('autocompleted');
e.preventDefault();
})
Getting Started
Small javascript library to detect browser autofill of form elements. Usefull for implementing floating labels or appling custom styles.
Modern browsers all have some ability to autocomplete the forms in a web page. It can be a login or a registration form, and the autofill can be triggered automatiaclly by the browser or manually by the user. In both cases there is no native way to detect the autocomplete. This is where this small library comes in handy.
Every browser has it's own way to autocomplete a form. Basically this library creates and triggers a CustomEvent
called autocomplete
every time this happends.
Furthermore this custom event can be prevented like all native events in order to block browser autofill using e.preventDefault()
.
Features
- Polyfill for CustomEvent integrated
- CustomEvent on
onautocomplete
- CustomEvent on
onautocomplete
cancel - Possibility to prevent
onautocomplete
Browser Support
CustomEvent | Edge | IE11 | Chrome | Firefox | Safari | Opera | iOS |
---|
onautocomplete | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
* This script uses different technics to detect autofill based on the browser:
- Chrome, Opera and Safari uses the pseudo-class
:-webkit-autofill
to trigger a custom animation. - Firefox uses input event on document and checks for a propriety
inputType
property of the event. - IE, Edge and iOS uses the same input event but they have to check the
data
property. - Android ha not yet been tested any help is welcomed.
Demos
The demos can be tested on every browser. If something is not working properly, please open an issue or a PR.
Title | Source code | Live demo |
---|
Fake login page | Code | Live |