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'><--Spectrum Homepage</a>
<h2>Input type = color</h2>
<input type='color' />
<input type='color' value='#f00' onchange="test(this)" />
CSS
.full-spectrum .sp-palette {
max-width: 200px;
}
JavaScript
setTimeout(function() {
$("input").show();
}, 100);
function test(data){
console.log(data.value)
}