uploadPane.dropFilesHereText Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets a label displayed on the upload pane when it is empty.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    uploadPane: {
        //...other params...
        dropFilesHereText: "Drop files here...",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').uploadPane().dropFilesHereText(value);
value = $au.imageUploaderFlash('uploaderID').uploadPane().dropFilesHereText();

Property Value

Type: String

The label displayed on the upload pane when it is empty. It may be a plain text string, HTML code or a DOM/jQuery element. If you pass a DOM or jQuery element, it will be detached from its old location and attached to the upload pane. See the Minimalistic demo for details.

Default value is "Drop files here...".

Remarks

This property is necessary for localization of HTML5/Flash Uploader.

See Also

Reference