What event is triggered when a Bootstrap modal is fully shown?

  • shown.bs.modal
  • modal('show')
  • on('shown', function() {...})
  • on('modalShown', function() {...})
The correct answer is shown.bs.modal. This event is triggered when a Bootstrap modal is fully shown to the user. It provides an opportunity to perform actions or execute code when the modal is visible, enhancing the user experience and interaction with the modal.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *