Could anyone know why when I drag an Item on my lit items in a list, the cursor turns into a crossed circle, yet the draggable
attribute is set to true
.
Here is part of the code
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer"
/>
<span class="number">1</span>
<div class="draggable" draggable="true">
<p class="song-name">Song 1</p>
<i class="fas fa-grip-lines"></i>
</div>
<span class="number">2</span>
<div class="draggable" draggable="true">
<p class="song-name">Song 2</p>
<i class="fas fa-grip-lines"></i>
</div>