DEV Community

Discussion on: Why won't anything draw on my canvas?

Collapse
 
baenencalin profile image
Calin Baenen

Okay, maybe I should have specified what I meant by log-ed, as I removed the debug code. But still, come on, document.write()+ is NOT logging, it's WRITING.

Collapse
 
ducaale profile image
Mohamed Dahir

In that case, you should be using innerHTML and not document.writeln()

document.getElementById('some-id').innerHTML += color;
Enter fullscreen mode Exit fullscreen mode