load() within ajaxStop() not resolving
Hello, I have a script wich processes a bunch of image files and then zips them up into several categorized zip files. The zip script needs to run after all the processing of the images. Here's how I have it set up:
- $('#zips').ajaxStop(function() {
- $(this).html('<p>Preparing zip files</p>');
- $(this).load('make_zip.php');
- });
The make_zip.php file is executing (I can watch on my FTP as the zip files are created) but the load function never changes the contents of #zips to be the output of make_zip.php
Any ideas?
Thanks in advance for your help.