Is there any way to change the style parameters of the pop-up window input type = "color" or to completely replace the template.
1 answer
Consider one of the libraries - Tiny jQuery colorPicker ( http://www.dematte.at/tinyColorPicker/ ) Ready-made solution http://codepen.io/anon/pen/EPrMGQ
<input value="#B6BD79" id="color" style="background-color: rgb(95, 104, 16); color: rgb(221, 221, 221);"> <script type="text/javascript" src="https://raw.githubusercontent.com/PitPik/tinyColorPicker/master/jqColorPicker.min.js"> <script type="text/javascript"> $('.color').colorPicker(); // that's it </script>
There are a lot of libraries for choosing colors, here is a list of jqueryrain.com/demo/jquery-color-picker/
- Another example is evol.colorpicker ( github.com/evoluteur/colorpicker ) View here codepen.io/anon/pen/PZVLMw - Jean-Claude
|