1.1.4 • Published 3 years ago

detect-autofill v1.1.4

Weekly downloads
1,873
License
MIT
Repository
github
Last release
3 years ago

Detect browsers autofill

npm version Build Status David David Greenkeeper badge License: MIT

TLDR

  1. Import script in the head
<head>
  ...
  <script src="https://unpkg.com/detect-autofill/dist/detect-autofill.js"></script>
  ...
</head>
  1. add event listeners
  2. do your things...
document.addEventListener('onautocomplete', function(e) {
  e.target.hasAttribute('autocompleted'); // true or false
  e.preventDefault(); // prevent autocomplete
  // do you stuff...
})

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

CustomEventEdgeIE11ChromeFirefoxSafariOperaiOS
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.

TitleSource codeLive demo
Fake login pageCodeLive