Disable image dragging

<script>

document.addEventListener("DOMContentLoaded", function () {

// Get all images and disable image dragging

var imgs = document.querySelectorAll('img');

imgs.forEach(img => {

img.addEventListener('mousedown', function (e) {

e.preventDefault();

});

img.draggable = false;

});

});

</script>

  

📝 📜 ⏱️ ⬆️