<script type="text/javascript">
function draw() {
var canvas = document.getElementById('Background');
if (canvas.getContext) {
var ctx = canvas.getContext('2d');
ctx.lineWidth = 0.4
ctx.strokeRect(15, 135, 240, 40)
Is there a way to change the mouse cursor to a pointer finger when hovering over this basic rectangular line using JavaScript?