i have a dragable item but it is under other html element when i drag it, even i set .item_dragable {
cursor: move;
z-index: 2147483646;
}
and on event dragable:
jQuerydragable.draggable({
cancel: "a.ui-icon", // clicking an icon won't initiate dragging
revert: "invalid", // when not dropped, the item will revert back to its initial position
containment: "document",
helper: "clone",
cursor: "move",
zIndex: 2147483647
});
what wrong is it? i use the lastest jQuery and jQuery ui
thanks