Gets or sets type of currently using ActiveX/Java Uploader control, Java applet or ActiveX control.
$au.uploader({
//...other params...
type: "activex|java",
//...other params...
})
Get/Set Value at Runtime
$au.uploader('uploaderID').type(value);
value = $au.uploader('uploaderID').type();
Type: String
Type of currently using ActiveX/Java Uploader control.
Possible values are:
You can use this property to utilize Java applet only in all browsers including Internet Explorer, although it is not recommended.
Default value is "activex|java".
var uploader = $au.uploader({
id: 'Uploader1',
type: 'java',
//other parameters...
});