🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

The Jroot Color Picker jQuery plugin allows you to pick a color from more than 100 modern preset palettes.

color-picker

Documentation

Jroot Color Picker

Introduction

Its a jquery base plugin to pick colors list, you can pick more the 100+ color pallets from the list on the go.

Installation

Download or clone the project and integrate the following files

<link href="assets/plugins/jroot-color-picker/color.css" rel="stylesheet"> <script src="assets/plugins/jroot-color-picker/color.js"></script>

Note: Jquery core and Jquery UI is required please use include them before this plugin.

Download Jquery from here

Code Samples

$(selector).colorpicker({ 	zIndex: false , 	position: 'middle-right', 	change: function (e, color){ 		console.log(color); 	}, 	over: function (e, color){ 		console.log(color); 	}, 	pick: function (e, color){ 		console.log(color); 	} }); 

You May Also Like