Socket
Socket
Sign inDemoInstall

bootstrap-colorpicker

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-colorpicker

Simple and customizable colorpicker component for Twitter Bootstrap.


Version published
Maintainers
1
Created
Source
Logo by @reallinfo

Bootstrap Colorpicker

Bootstrap Colorpicker is a simple and customizable colorpicker component for jQuery, which is also compatible with Twitter Bootstrap.

Build Status npm npm@next Donate Supporters

NOTE that this documentation refers to the next major version of the project, living in the master branch.
Previous documentation can be found here: v2.x.

Install

You can get the latest version in many different ways:

  • Downloading a ZIP file from the releases
  • Cloning using Git: git clone https://github.com/farbelous/bootstrap-colorpicker.git
  • Installing via NPM: npm install bootstrap-colorpicker
  • Installing via Yarn: yarn add bootstrap-colorpicker
  • Installing via Composer: composer require itsjavi/bootstrap-colorpicker

To start using the component, most of the time you will only need the files under the dist folder. Example:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <link href="dist/css/bootstrap-colorpicker.css" rel="stylesheet">
</head>
<body>
  <div class="container">
      <input id="mycp" type="text" class="form-control" />
  </div>
  <script src="//code.jquery.com/jquery-3.2.1.js"></script>
  <script src="dist/js/bootstrap-colorpicker.js"></script>
  <script>
    $(function () {
      $('#mycp').colorpicker();
    });
  </script>
</body>

Requirements

Note that this library depends on jQuery >= 2.1.0.

The Twitter Bootstrap dependency is totally optional, since this library does not depend directly on it in order to work, except when Bootstrap-related classes like form-control and input-group-addon are used like in the examples. In that case you will need at least the Bootstrap CSS for everything to be displayed correctly.

Documentation

The documentation of this project has been created with by Handlebars, JSDoc and the Minami template.

Older versions:

Contributions

This project exists thanks to all the people who contribute.

Please read CONTRIBUTING before sending a pull request or issue.

License

The MIT License (MIT). Please see the License File for more information.

Credits

Originally written by Stefan Petre in 2013.

Rewritten and maintained by Javi Aguilar and all other contributors.

With the support of JetBrains.

Keywords

FAQs

Package last updated on 22 Jul 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