I can\'t seem to find the function to remove a shape or path from the canvas after it has been created.
So I\'m creating a bezier curve between 2 points with
<
Thanks for the great input to all of you - it helped me find the solution:
context.clearRect(x,y,w,h);
(link)
This will clear anything within that rectangle.
I found the method on the page I found while digging for ILog's answer to save/restore the context, and it's all on there. Thanks again.