Gets or sets a label displayed on the upload pane when it is empty.
$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();
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...".
This property is necessary for localization of HTML5/Flash Uploader.