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
There was change in boostrap where you need to use: on shown.bs.modal
Call a function when you show the modal window (I opted for this method)
SMS Summary function showSMSSummary() { $('#HelpScreenModalContent').modal('show'); $('#HelpScreenModal').animate({ scrollTop: 0 }, 'fast'); }