uploader_progress_handler

Client side event handler when an AJAXUploader updates progress information.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 uploader_progress_handler(uploader, total, received)

Parameters

uploader
The AJAXUploader object that triggered this event.
total
The total number of bytes to be transferred.
received
Number of bytes that have already been transferred.
Remarks

This is a prototype, not a function. You should provide this function if you wish to handle client side events raised by an AJAXUploader object when it updates progress information.

See Also