![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
autotyper-jquery
Advanced tools
⌨️ A jQuery plugin for automatically typing text.
For more information see the core package.
yarn add jquery autotyper-jquery
npm install --save jquery autotyper-jquery
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();
const $ = require('jquery');
const autotyper = require('autotyper');
// plugin is ready to use
require(['jquery', 'autotyper'], ($, autotyper) => {
// plugin is ready to use
});
The latest version of the UMD build (bundled and minified) is available for download:
<!-- 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>
See the core package.
MIT © Saul Hardman
FAQs
A jQuery plugin for automatically typing text.
The npm package autotyper-jquery receives a total of 2 weekly downloads. As such, autotyper-jquery popularity was classified as not popular.
We found that autotyper-jquery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.