Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 803 Bytes

README.md

File metadata and controls

36 lines (25 loc) · 803 Bytes

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);
	}
});