Hi I am trying to use jQuery's AJAX functionality to make a progress bar.
A request is submited via AJAX, which starts importing data to a database. Once submited another AJAX request is called on an interval which checks the progress of this import, a progress meter is then updated using this information. However, the progress AJAX call which is fired on the submit of the form only returns once the import has complete. Its like its being blocked by the initial request? Can anyone explain whats going on here and/or how I can get both calls to work at the same time? Thanks Jake