I have a report view and I need to popup a sweetalert box on top of it. Here is the code for the sweet alert:
<script type="text/javascript">
Swal.fire({
title: 'Complete',
text: 'We have built your reports',
imageUrl: 'https://unsplash.it/400/200',
imageWidth: 400,
imageHeight: 200,
imageAlt: 'Custom image',
})
</script>
Where can I place this so it will appear "on top" of the report.view?