Hello,
I am opening the log-tail page in modal window using bootstrap.
Problem is that even if the modal window is closed and even if I used to remove data from closed modal by following script which works for all my modal windows opened by link the script to seems stay active and still invoking ajax to the log file:
<script type="text/javascript">
$('.modal').on('hidden.bs.modal', function () {
$(this).removeData('bs.modal');
});
</script>
Please advise solution.
Thanks, Reddy