0

Does anybody know how you can completely remove the backdrop or make it as big as the modal that is showing?

I managed to hide the backdrop and make the modal draggable by using jQuery UI

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

$('#myModal').modal({
    show: true,
    backdrop: false
});

And added the following styling to the modal

overflow: hidden

This works fine but this will only hide the backdrop but you cannot click on anything that is behind the backdrop. Only if you drag it all the way down you can click on the GUI components that are "behind" the backdrop. That's because the DIV is dragged with the modal.

So the one thing that is missing for me is that I want to be able to click on GUI components that are visible when I drag the modal. Does anybody know how to do this?

Tranquilized
  • 721
  • 2
  • 6
  • 23

0 Answers0