Default value: false
The value indicates whether to upload the file as soon as it is selected in the "Choose File to Upload" dialog box.
Syntax
$(function () {
// Get value
var returnsValue; // Type: boolean
returnsValue = $(".selector").wijupload("option", "autoSubmit");
// Set value
var newValue; // Type: boolean
$(".selector").wijupload("option", "autoSubmit", newValue);
});
var autoSubmit : boolean;
See Also