Currently I'm using bootstrap modal popup(call those modals dynamically).
All are working fine but it does not show the updated content until I reload the page. This because hide and show events. I'm using the events like wise.
this for show the modal
$('ModalID').modal({ remote: "RemoteURL"});
this for hide the particular modal
$('ModalID').modal("hide");
If I have single modal it's OK but if I'm managing more then one modal at a page, it will not give the updated modal.
So is there is any possibility to reload the modal pop-up for each request instead of showing the modal which was already loaded, or any other way to show updated modal each and every time?