Jquery Draggable + Bring to Front

前端 未结 4 930
长情又很酷
长情又很酷 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条回答
  •  迷失自我
    2021-01-21 13:52

    Though there is an option - 'stack' existing while initiating draggables like this -

    $('.draggable').draggable({
        stack: ".draggable"
    });
    

    But it is not working properly, So I have wrote a small library dragToFront playing with z-index. Following is the plunkr link

    https://embed.plnkr.co/mJqkxSJhf1Umg7r2oLQN/

提交回复
热议问题