New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jquery-once

Package Overview
Dependencies
Maintainers
5
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-once

Act on jQuery elements only once.

2.3.0
latest
Source
npm
Version published
Weekly downloads
5.4K
8.59%
Maintainers
5
Weekly downloads
 
Created
Source

jQuery Once NPM version

Testing NPM downloads

Act on jQuery elements only once.

Filters out all elements that had the same filter applied on them before. It can be used to ensure that a function is only applied once to an element.

Install

MethodInstallation
npmnpm install jquery-once --save
Composercomposer require robloach/jquery-once
Bowerbower install jquery-once
Componentcomponent install RobLoach/jquery-once
jsDelivr//cdn.jsdelivr.net/npm/jquery-once@2.3.0/jquery.once.min.js
cdnjs//cdnjs.cloudflare.com/ajax/libs/jquery-once/2.3.0/jquery.once.js

Usage

See the API documentation for more information on how to use jQuery Once.

// The following will change the color of each paragraph to red, just once
// for the "changecolor" key.
$('p').once('changecolor').css('color', 'red');

// .once() will return a set of elements that yet to have the once ID
// associated with them. You can return to the original collection set by
// using .end().
$('p')
  .once("changecolorblue")
    .css("color", "blue")
  .end()
  .css("color", "red");

// To execute a function on the once set, you can use jQuery's each().
$('div.calendar').once().each(function() {
  // Since there is no once ID provided here, the key will be "once".
});

Development

  • Ensure you are using node >= 4:
node --version
  • Install dependencies through npm:
npm install
  • Check coding style standard, and automated testing:
npm test
  • Build jquery.once.min.js with:
npm run build
  • Update API documentation:
npm run docs
git add -A
git commit -m "2.3.0"
git tag 2.3.0
git push origin 2.3.0
npm publish

Change Log

Discover the change history by heading on over to the CHANGELOG.md file.

License

Dual licensed under:

Copyright © Rob Loach

Keywords

jquery

FAQs

Package last updated on 04 Jan 2024

Did you know?

Socket

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.

Install

Related posts