How do i trigger the mousemove event on a pointer-events none div, I can't edit the html of the page only the javascript (banking)
<h1>title</h1>
<div class="wrapper">
<h3>element 1</h3>
<h3>element 2</h3>
</div>
the script currently only triggers the body as the target and not the element
document.body.addEventListener("mousemove", function(e) {
console.log(e.target)
})