John has created an object called Pines. He wants to change the cursor type to the pointer cursor. Which of the following syntaxes must John use to accomplish this?
document.getElementById("Pines").style.cursor = "pointer";
function trackPointer(e) {
var hPos = e.clientX;
var vPos = e.clientY;
document.getElementById("element2").innerText =
" (" + hPos + ", " + vPos + ")";
}