make bootstrap twitter dialog modal draggable

后端 未结 9 2204
野性不改
野性不改 2021-01-30 08:43

I\'m trying to make bootstrap twitter dialog modal draggable with this jquery plugin:

http://threedubmedia.com/code/event/drag#demos

but it doesn\'t work.

<
9条回答
  •  一整个雨季
    2021-01-30 09:01

    The top-ranked solution (by Mizbah Ahsan) is not quite right ...but is close. If you apply draggable() to the modal dialog element, the browser window scroll bars will drag around the screen as you drag the modal dialog. The way to fix that is to apply draggable() to the modal-dialog class instead:

    $(".modal-dialog").draggable({
        handle: ".modal-header"
    });
    

    Thanks!

提交回复
热议问题