Cursor on draggable

Cursor on draggable

Hi,

Just a draggable object, nothing special.

  1. var draggableOptionsSFL = {
        containment: "document",
        cursor: "pointer",
        helper: "original",
        revert: "invalid",
        start: function (event, ui) { },
        drag: function (e, ui) { }
    }
    $(".myBlock").draggable(draggableOptionsSFL);









But after I drag the element the whole body gets cursor=pointer. (<body style="cursor: pointer;">).
I tried to play with containment: "document" - no result.

Does anybody can help with this problem?

Thanks a lot.