input-preloader-js

2.0.1 • Public • Published

InputPreloader for JavaScript

npm

A simple input preloader to preload inputs on the web.

Installation

Yarn

$ yarn add input-preloader-js

NPM

$ npm install input-preloader-js

Usage

  1. Assuming you have the following form inputs and id attributes

    <input type="radio" name="a-radio" id="a-radio"> Text for radio
    <input type="float" name="a-float" id="a-float">
    <input type="integer" name="a-integer" id="a-integer">
    <input type="string" name="a-string" id="a-string">
  2. Require the InputPreloader

    var InputPreloader = require("input-preloader-js");
  3. Initialize the InputPreloader with your inputs and their input types

    var inputs = [
        "a-radio:radio",
        "a-float:float",
        "a-integer:integer",
        "a-string:string"
    ];
    var preloader = new InputPreloader(inputs);
  4. Configure the InputPreloader to preload inputs on page load, and save inputs before moving away from the page.

    preloader.configure();
  5. That's it! Now the inputs will be preloaded everytime the page is loaded by the user.

  6. In the case where you are done with the form, and doesn't need to preload the inputs anymore, call deconfigure() to remove all stored inputs.

    preloader.deconfigure();

Contributing

We'd love to accept your patches and contributions to this project! Checkout contributing and code of conduct to learn more.

License

Refer to the license file.

Package Sidebar

Install

npm i input-preloader-js

Weekly Downloads

2

Version

2.0.1

License

Apache 2.0

Unpacked Size

21 kB

Total Files

7

Last publish

Collaborators

  • zaimramlan