Asynchronous Fetch in Javascript
I need to make a call to a file named chiamata_preventivo.php, which takes about 10 minutes to respond. While this page is being processed, I would like to open a new tab to dashboard.php to allow the user to navigate while the request is being processed. The issue is that the call is blocking, and I’m unable to make it work with fetch() or an AJAX call.