🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

The jQuery Colpicker plugin helps you create a color picker and palette selector for easier HEX and/or RGBA color selection.

color-picker

Documentation

Colpicker

A simple rgba colorpicker as jQuery-plugin. Demo page

Gives a nice ui for selecting color from palette instead of inputing rgba as hexacode.

License

MIT-license

Usage

Show input field with hex-value and preview area. Preview area is clickable and clicking shows and hides the palette.

jQuery('input#colorbox1').colpicker({     showInput: true,     hiddable: true });

Don't show the input field, palette is hidden by default:

jQuery('#colorbox2').colpicker({     showInput: false,     hiddable: true });

Limit the size of the colorpicker to 400px, show input field, don't hide the palette.

jQuery('#colorbox2').colpicker({     width: 400,     showInput: true });

You May Also Like