jQuery(document).ready(function ($) { const spinnerHtml = document.getElementById('spinner').innerHTML; $(".load-contract-info").on('click', function (event) { event.preventDefault(); event.stopPropagation(); console.log('clicked'); const modal = new bootstrap.Modal(document.getElementById('load-info-modal')); document.getElementById('load-info-modal').querySelector('.modal-title').textContent = $(this).text(); document.getElementById('load-info-modal').querySelector('.modal-body').innerHTML = spinnerHtml; modal.show(); const url = $(this).attr('href'); $.ajax({ url: url, success: function (data) { document.getElementById('load-info-modal').querySelector('.modal-body').innerHTML = data; } }); }); });