upload

The text displayed on the button that starts the upload operation.

Defaults to "Upload files".

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

<script type="text/javascript">
    jQuery(function ($) {
        $('#files').shieldUpload({
            messages: {
                drop: "Drag and drop files here"
                select: "Browse ...",
                upload: "Start Upload"
            }
        });
    });
</script>