I want to load an iframe into a bootstrap modal and show a loader before the iframe is loaded. I am using a simple jquery click function, but it is not working. I do not und
Bootstrap event for modal load was changed in Bootstrap 3
just use shown.bs.modal event:
shown.bs.modal
$('.modal').on('shown.bs.modal', function() { $(this).find('iframe').attr('src','http://www.google.com') })
More can found on the event at the below link:
http://getbootstrap.com/javascript/