jQuery Movable Modal Dialog Box

前端 未结 3 662
南旧
南旧 2020-12-30 13:05

I have been looking at all available jQuery plugins for a modal box that is draggable. The only problem is that every modal box I have found that is dragable requires a titl

3条回答
  •  [愿得一人]
    2020-12-30 13:39

    This simple method works for me:

    // first invoke jquery modal the standard way
    $('#myModal').modal();
    
    // now make it draggable
    $('#myModal').draggable();   
    

提交回复
热议问题