load() within ajaxStop() not resolving

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:

  1. $('#zips').ajaxStop(function() {
  2. $(this).html('<p>Preparing zip files</p>');
  3. $(this).load('make_zip.php');
  4. });
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.