The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxColorPicker widget requires the following files:
To get the result of a function(method) call, you need to pass the method name in the jqxColorPicker’s constructor and parameters(if any).$("#jqxColorPicker").jqxColorPicker(‘setColor’, '#ff00ff');
To set a property(option), you need to pass the property name and value(s) in the jqxColorPicker's constructor.var color = $("#jqxColorPicker").jqxColorPicker(‘getColor’);
To get a property(option), you need to pass the property name to the jqxColorPicker's constructor.$("#jqxColorPicker").jqxColorPicker({ disabled: true });
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the color is changed.. The example code below demonstrates how to bind to the ‘colorchange’ event of jqxColorPicker.var isDisabled = $("#jqxColorPicker").jqxColorPicker('disabled');
$("#jqxColorPicker").bind('colorchange', function (event) {});