Spectrum From Master

A working demo of the latest version of spectrum colorpicker

HTML

<link rel="stylesheet" href="http://bgrins.github.com/spectrum/spectrum.css">
<script src="http://bgrins.github.com/spectrum/spectrum.js"></script>
<a href='http://bgrins.github.com/spectrum'>&lt;--Spectrum Homepage</a>


<h2>Full Example</h2>
<input type='text' id="full"/>

CSS

.full-spectrum .sp-palette {
max-width: 200px;
}

JavaScript

$("#full").spectrum({
    color: "#000000",
    preferredFormat: "hex",
    showAlpha:true,
    showPalette: true,
    move: function(color) {
        var rgba = color;
        console.log('rgba: '+rgba+', alpha: '+color.alpha);
    }
});