I have a form in my index.html that calls a jQuery function on submitting. This jQuery function does an AJAX request to run a PHP script.
I want the PHP script to interact with the HTML (the goal is to refresh a progress bar).
My problem is that in running the PHP script with AJAX, it's executing in background. I don't want the page to refresh during the processing of PHP in fact.
How can I achieve this ?