Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

cancel javascript error
  • I get an "Unspecified error" (can it get any more vague than that?) at line 49 which is a completely unrelated function outside of the scope of $(document).ready(function() { }
    The script parameters are all pointing to the right directories and files.
    Everything works great until I try to cancel an upload in the queue.
    Here's the code. If anyone has come across this before, please help.
    Running on IIS 5.1 fails in IE8, FF3, Safari 3. jquery.uploadify.v2.1.0.min.js and jquery-1.4.2.min.js
    Thanks
    j

    $(\"#uploadify\").uploadify({
    'uploader' : 'js/uploadify/uploadify.swf',
    'script' : 'js/uploadify/uploadify.php',
    'checkScript' : 'js/uploadify/check.php',
    'cancelImg' : 'js/uploadify/cancel.png',
    'fileDesc' : '.jpg file extensions only',
    'fileExt' : '*.jpg;*.jpeg;',
    'folder' : 'images/previews',
    'queueID' : 'fileQueue',
    'auto' : true,
    'multi' : true,
    'onComplete': function(event, ID, fileObj, response, data) {
    $(\"#\" + $(this).attr('id') + ID + \" .percentage\").text(' - Completed');
    return false;

    }

    });