html
.container,
.container * {
cursor: url('img/arrowPointer.png'), auto;
}
javascript
$('html').on('dragstart', function () {
$('html').addClass('container');
});
$('html').on('dragend', function () {
$('html').removeClass('container');
});
Even though the class is assigned and the cursor image is loaded, the standard cursor is still being used when dragging the object. What adjustments are needed?