Modal not opening in IE

后端 未结 6 1617
野性不改
野性不改 2020-12-01 21:16

I\'m trying to make modals pop up with info about certain places on a map. Here is the code:



        
6条回答
  •  暖寄归人
    2020-12-01 21:36

    Here is another solution without modifying initial bootstrap layout and code:

    var $modalWrapper = $('#modalWrapper');
    $modalWrapper.on('show.bs.modal', function () {
        $modalWrapper.toggleClass('in', true);
    });
    $modalWrapper.on('hidden.bs.modal', function () {
        $('.modal-backdrop.fade').remove();
    });
    

提交回复
热议问题