In bootstrap css, it is possible to display a modal dialog, but I want to be able to make it modal so the UI behind doesn't respond, without having the dark black background shown.
There seems to be no options that allow me to do this on the $("#selector").modal() function.
To get rid of the backdrop:
After modal initiation
$('#XXX').modal({show:true});
just trigger the code below
$('.modal-backdrop').removeClass("modal-backdrop");
2.1m questions
2.1m answers
60 comments
57.0k users