Gets or sets type or priority of HTML5/Flash Uploader controls.
$au.imageUploaderFlash({ //...other params... type: "html|flash", //...other params... })Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').type(value); value = $au.imageUploaderFlash('uploaderID').type();
Type: String
Type or priority of HTML5/Flash Uploader controls.
Possible values are:
You can use this property to change default controls priority or to specify the only control to use.
Default value is "html|flash".
var u = $au.imageUploaderFlash({ id: 'Uploader1', type: 'flash|html' }); u.writeHtml();