I have a HTML5 canvas with a several line segments on it. I want to add a jQuery color picker so I can let users change the stroke color of those segments. How do I get the value from the colorpicker to apply to a specific line segment?
edit...okay i have gotten it this far lol, but I can't figure out how to get the line to pick up the new myPicker
<script type="text/javascript" src="jscolor.js"></script>
<script type="text/javascript">
var myPicker = new jscolor.color(document.getElementById('myField1'), {})
</script>
<script type="application/javascript" language="javascript">
window.onload = function(){
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
var myStroke = "#ff0000";
context.moveTo(100, 150);
context.lineTo(450, 150);
context.lineWidth = 10;
context.strokeStyle = myStroke;
context.stroke();
};
</script>
