I\'m currently using Twitter Bootstrap modal component and i have an issue where I use jquery validation plugin on input fields in the content I load remotely using the data-rem
The 'loaded.bs.modal' event doesn't work for me, so I have tried the 'shown.bs.modal' event and it's works fine :
$('#myModal').on('shown.bs.modal', function () { // do cool stuff here... });
This event is captured after the modal is shown.
I hope this will help someone :)