I cant fix colorpicker.js in phonegap, it is not working! Some help, please?
thanks
$(\'#colorSelector\').ColorPicker({
color: \'#000
There one paid color picker JQuery Mobile Color Picker, only use it if you don't find the solution!
Try Spectrum Colorpicker. This is very nice color picker plugin.
Download the zip file and include the spectrum.js
file and spectrum.css
file to your page. Then you have to create a text box as follows
<input type='color' id='custom' />
Inside your script file
$("#custom").spectrum({
color: "#f00"
});
Hope it helped you
Solved with the Angular-JS directive ngjs-color-picker
A small directive which essentially is a color picker but with a few extra functions - for Angular-JS. Suitable for developing custom color pallet in phonegap / Cordova apps.