Bootstrap color picker
Bootstrap color picker Example : You can integrate the Bootstrap color picker plugin as below.
Bootstrap color picker Example
You need following js and css for bootstrap color picker.
We have loaded it from the cdn as below :
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-colorpicker/2.3.0/js/bootstrap-colorpicker.min.js"></script> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-colorpicker/2.3.0/css/bootstrap-colorpicker.min.css">
<script> $(function(){ $('#color-picker').colorpicker(); }); </script> |
Output
Advertisements