autotyper-jquery

A jQuery plugin for automatically typing text.

Usage no npm install needed!

<script type="module">
  import autotyperJquery from 'https://cdn.skypack.dev/autotyper-jquery';
</script>

README

autotyper-jquery

⌨️ A jQuery plugin for automatically typing text.

For more information see the core package.

Installation

Yarn

yarn add jquery autotyper-jquery

npm

npm install --save jquery autotyper-jquery

Usage

import $ from 'jQuery';
import autotyper from 'autotyper-jquery';

const $example = $('.js-example');

$example.autotyper({
  text: 'This is the jQuery Plugin in action!',
  interval: [50, 100],
  autoStart: false,
});

$example.on('autotyper.type', (e, text) => {
  // do something with `text`
});

// call functions on the `autotyper` instance
$example.autotyper('start');

// directly access the `autotyper` instance
const instance = $example.data('autotyper');

instance.stop();

CommonJS

const $ = require('jquery');
const autotyper = require('autotyper');

// plugin is ready to use

AMD

require(['jquery', 'autotyper'], ($, autotyper) => {
  // plugin is ready to use
});

Download

The latest version of the UMD build (bundled and minified) is available for download:

CDN

<!-- Be sure to include jQuery first -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!-- Use a specific release (replace `x.x.x` with a version number) -->
<script src="https://unpkg.com/autotyper-jquery@x.x.x/dist/index.min.js"></script>
<!-- Use the latest minor or patch release (replace `x` with a version number) -->
<script src="https://unpkg.com/autotyper-jquery@x/dist/index.min.js"></script>
<!-- DANGER: Use the latest major release (could introduce breaking changes) -->
<script src="https://unpkg.com/autotyper-jquery/dist/index.min.js"></script>

<script>
  // plugin is ready to use
</script>

API

See the core package.

License

MIT © Saul Hardman