I have a menu with multiple modals. When I open one over another it turns backgrount into black, which is ugly. I understand that I need change filter: alpha(opacity=80);<
filter: alpha(opacity=80);<
Took me forever, but I found a one-liner.
$(window).load(function(){ // remove greying background bootstrap modal effect $(".modal-backdrop ").attr('class', 'someClass'); });
Removing the class removed the modal. But renaming it keeps the functionality but gets rid of the background greying.