You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
peterd 17987b339c fixed actionCallback issue on minified files
function names on min.’s files get a short name, so _mouseMoveAction
ends up with a weird name if minified and provides wrong name to
actionCallback
10 years ago
..
README.md README update 10 years ago
index.html Added monospace for better rendering on WIN-OS 10 years ago
jQueryColorPicker.min.js fixed actionCallback issue on minified files 10 years ago
jqColor.css initial jQuery impementation 10 years ago
jqColor.js small change 10 years ago

README.md

jQuery implementation

Some description follows soon...

##Demo See demo at dematte.at/cpn/jQuery_implementation

##Usage

    $('input.color').colorPicker();
    // description of option will follow
    $('input.color').colorPicker({
        klass: window.ColorPicker,
        input: elm,
        patch: elm,
        animationSpeed: 200,
        draggable: true,
        multipleInstances: false
        margin: {left: -1, top: 2},
        initStyle: 'display: none',
        mode: 'hsv-h',
        size: 1,
        renderCallback: renderCallback
        // and all other options from color and colorPicker
    });