Jquery Draggable + Bring to Front

前端 未结 4 938
长情又很酷
长情又很酷 2021-01-21 13:43

I have a window with a number of chat DIV\'s where a user to chat to different people.

Currently the chat DIV\'s can be open and moved around but I can\'t see to get the

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-21 14:14

    I figured out that the easiest implementation is to move the div in the dom to the last position. so if you dont have to care about the position in the dom this is the easiest way without using z-index. i use this for positioning some sticky notes.

    $("#chatWrapper").on('mousedown', '.chatMessenger', function() {
        $(this).appendTo("#chatWrapper");
    });
    

提交回复
热议问题