I created a label with the position of the cursor, I want this label to always be held by the cursor. I created this, it works, but not behind the cursor.
var x = ev.clientX;
var y = ev.clientY;
var info_souris = document.getElementById("position_souris");
info_souris.innerHTML = x + "," + y;
<label id="position_souris"></label>