I'm in need of a method to load dynamic content that can change at any time. According to the Bootstrap documentation
<a data-toggle="modal" href="remote.htm" data-target="#modal">Click me</a>
is making use of the jQuerys' .load only loading the content once. It injects the content in the modal-content div. As previously stated the content of this modal can be changed at any given time and therefore I need a different method. Any ideas?
TL;DR - I'm looking for a method that will load dynamic content (remote) every time the modal opens instead of once (default Bootstrap modal).