4

I need to have a JQuery color Picker, where I can change the different HTML elements on a page. It should be easy to implement, I should be able to pick a color, enter RGB values and Hex values. Which plugin is the best hassle free to use.

Elitmiar
  • 35,072
  • 73
  • 180
  • 229
  • https://github.com/tovic/color-picker is a tiny color picker plugin written in pure JavaScript. It is a hook-based plugin so you can simply create another function/class wrapper to extend your own custom features. – Taufik Nurrohman Jul 19 '16 at 02:54

7 Answers7

8

If you want to write in html5 you can use attribute type for input tag

usage:

<input type="color" name="helpme">

or

Try this site, It has bunch of color pickers. Choose which suits you best.

Santosh
  • 1,027
  • 13
  • 12
7

This jQuery plugin is quite simple. You can enter Hex value but there is no method for RGB (as seems from demo page).

TheVillageIdiot
  • 40,053
  • 20
  • 133
  • 188
  • I use this one in my projects, it's one of the most accurate and easy to use of the lot. – Klemen Slavič Nov 03 '09 at 16:37
  • I use Fabtastic as well... check out this SO answer (http://stackoverflow.com/questions/638948/background-color-hex-to-js-variable-jquery) on how to convert RGB to hex – Mottie Nov 03 '09 at 22:54
2

http://www.eyecon.ro/colorpicker/

RedWolves
  • 10,379
  • 12
  • 49
  • 68
1

How about ColorPicker? It allows you to enter hex/RGB/HSB, or click on a nice colour chart.

Dominic Rodger
  • 97,747
  • 36
  • 197
  • 212
0

What about This plugin

mickthompson
  • 5,442
  • 11
  • 47
  • 59
0

Farbtastic is my color picker of choice:
http://acko.net/blog/farbtastic-jquery-color-picker-plug-in/
The js file is only 10kb, or less than 5kb if you minify it.

Doug S
  • 10,146
  • 3
  • 40
  • 45
0

I have brought some of the MIT like jQuery color picker on this website. All of them have the links back to their original sites that have their implementation documentation in case you decide to use one of them.

But for which one is the "Best" one, you might have to judge it by yourself.

ともこ
  • 775
  • 1
  • 5
  • 21