JQuery scroll to top of Bootstrap Modal

前端 未结 7 1320
小蘑菇
小蘑菇 2020-12-23 19:37

I\'m currently using the bootstrap modal plugin to display long legal messages on a website I\'m designing, but the problem is that if you open one modal after the other, th

7条回答
  •  太阳男子
    2020-12-23 19:46

    Okay I've answered my own question. For anyone else with this issue, simply add this function to your JS!

    $('#modal').on('shown', function () {
        $("#modal-content").scrollTop(0);
    });
    

    I will leave this question up, as there isn't one similar (that I could find) and it may help someone

提交回复
热议问题