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
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