select

The text displayed on the button that opens the standard file selection dialog.

Defaults to "Select 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>