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

installationProgress.progressHtml Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Sets a text saying that the download of Image Uploader is in progress.

Syntax

JavaScript Initialize
var u = $au.uploader({
    //...other params...
});
var ip = $au.installationProgress(u);
ip.progressHtml("<p><img src=\"{0}\" /><br />" +
"Loading Aurigma Image Uploader...</p>");
//...other params...
u.writeHtml();

Property Value

Type: String

The text saying that the download of Image Uploader is in progress.

The value of this property can contain {0} placeholder. Before displaying the downloading screen, this placeholder is replaced with image URL defined in the progressImageUrl property. It allows you to customize images without changing HTML-marked text.

Default value is "<p><img src=\"{0}\" /><br /> Loading Aurigma Image Uploader...</p>".

See Also

Reference