Czyszczenie canvas
Listing
var cv = document.getElementById("canvas"); var ctx = cv.getContext("2d"); var width = cv.width; var height = cv.height; ctx.beginPath(); ctx.fillStyle='red'; ctx.rect(20,20,100,100) ctx.fill(); document.getElementById("clear").addEventListener('click', function(){ ctx.clearRect(0,0, width, height); }, false);