Bootstrap v5 modal show issue
2
2
I decided to go ahead and update my site to the latest version of Bootstrap, version 5.0 and am having difficulty getting modals to work. Reading the migration guide said nothing about breaking modals and my site worked perfectly before. My code uses javascript/jQuery to fire off the modal after the ajax loads the text. The ajax part still works fine, but it's not firing the modal after it retrieves it. I'm using the latest bootstrap.bundle.min.js.
$( document ).ready(function() { $('.hourModal').click(function(){ var obj_id = $(this).data('id'); $.ajax({ url: 'ajax-multi.php', type: 'POST', data: {obj_id: obj_id,role:'some_role'}, //dataType: 'html', success...