drop

The drop files hint, shown only when there is a file being dragged on the page. This hint indicates the place where the file should be dropped.

Defaults to "Drop files here to upload".

<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>