autoUpload

If set to true, this option will cause the Upload to start uploading any file as soon as it has been selected (via file select dialog or drag-and-drop).

Defaults to false, which means that an Upload button will appear, which must be clicked to trigger the upload.

<input type="file" name="files" id="files" />

<script type="text/javascript">
    jQuery(function ($) {
        $('#files').shieldUpload({
            async: {
                enabled: true,
                autoUpload: true,
                save: {
                    url: "/upload/save"
                },
                remove: {
                    url: "/upload/remove"
                }
            }
        });
    });
</script>