When I right click on a js canvas, the refresh page button is not available, is it possible to get the normal menu to pop up?
Here is an example
<!DOCTYPE html>
<html>
<head>
<title>Simple Drawing Program</title>
<style>
#canvas {
border: 1px solid black;
}
</style>
</head>
<body>
<canvas id="canvas" width="500" height="500"></canvas>
<script>
// Get the canvas element
const canvas = document.getElementById('canvas');
const context = canvas.getContext('2d');
</script>
</body>
</html>

canvaselement. Why do you believe it should be?