Код: Выделить всё
const bodyElement = document.querySelector("body");
bodyElement.addEventListener("mousemove", (event) => {
const x = event.offsetX;
const y = event.offsetY;
const spanElement = document.createElement("span");
spanElement.style.left = x + "px";
spanElement.style.top = y + "px";
bodyElement.appendChild(spanElement);
});
Код: Выделить всё
inpage.js:200
Uncaught (in promise)
TypeError: Cannot read properties of null (reading 'type')
at Di. (inpage.js:200:122709)
at Generator.next ()
at Pe (inpage.js:200:121668)
Подробнее здесь: https://stackoverflow.com/questions/786 ... ading-type