skip to Main Content

HTML Canvas "onmousedown" event and "mousedown" listener not firing

I have an HTML page with a canvas in the body defined as so: <!DOCTYPE html> <html> <head> <script defer src="./js/canvas.js"></script> <link rel="stylesheet" href="./css/canvas.css"> </head> <body> <canvas id="pinboard"></canvas> </body> </html> In canvas.js I've written: var canvas = document.getElementById("pinboard"); canvas.addEventListener("mousedown", function…

VIEW QUESTION
Back To Top
Search