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

jquery-datepicker

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jquery-datepicker

Just the datepicker lib from jquery-ui 1.12.1

  • 1.12.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
14K
increased by4.68%
Maintainers
1
Weekly downloads
 
Created
Source

jquery-datepicker

Just the datepicker lib from jquery-ui 1.12.1

The module itself and translation files are split out into factory modules for smaller builds

import $ from 'jquery';
import datepickerFactory from 'jquery-datepicker';
import datepickerJAFactory from 'jquery-datepicker/i18n/jquery.ui.datepicker-ja';

// Just pass your jquery instance and you're done
datepickerFactory($);
datepickerJAFactory($);

$(function() {
  $('#datepicker').datepicker();
  $.datepicker.regional['ja'];
});

If you aren't using a bundler, jqueryDatepicker will become an available global factory once the main file is consumed.

require('jquery-datepicker');

$(function() {
  jqueryDatepicker($);
  $('#datepicker').datepicker();
  $.datepicker.regional['ja'];
});

Keywords

FAQs

Package last updated on 25 Mar 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc