Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery Color Picker [closed]

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.

like image 687
Elitmiar Avatar asked Dec 03 '22 07:12

Elitmiar


2 Answers

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.

like image 83
Santosh Avatar answered Dec 25 '22 06:12

Santosh


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

like image 35
TheVillageIdiot Avatar answered Dec 25 '22 06:12

TheVillageIdiot