This documentation is for the old version. Go to the latest Upload Suite docs

events.afterSendRequest Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets an array of AfterSendRequest event handlers.

Syntax

JavaScript Initialize
$au.uploader({
    events: {
        //...other params...
        afterSendRequest: [],
        //...other params...
    }
})
Get/Set Value at Runtime
$au.uploader('uploaderID').events().afterSendRequest(value);
value = $au.uploader('uploaderID').events().afterSendRequest();

Property Value

Type: $au.event

The string containing the name of AfterSendRequest event handler or an array of handler names.

Remarks

This event fires when the current POST request was uploaded successfully.

See Also

Reference