Saturday, 5 October 2013

Ajax Multiple Files Uploader With Progress bar and Drag & Drop Plugin

This is mini ajax file upload jquery plugin. This file upload plugin support drag and drop skill. Users can upload files by selecting. This is so sweet file uploader. For using this plugin you need to include jQuery.js.





HTML Code

   <!DOCTYPE html>
<html>

    <head>
        <title>Upload Form</title>

        <link href="http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700" rel='stylesheet' />
        <link href="assets/css/style.css" rel="stylesheet" />
    </head>

    <body>

        <form id="upload" method="post" action="upload.php" enctype="multipart/form-data">
            <div id="drop">
                Drop Here

                <a>Browse</a>
                <input type="file" name="upl" multiple />
            </div>

            <ul>
                <!-- The file uploads will be shown here -->
            </ul>

        </form>
        
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script src="assets/js/jquery.knob.js"></script>
        <script src="assets/js/jquery.ui.widget.js"></script>
        <script src="assets/js/jquery.iframe-transport.js"></script>
        <script src="assets/js/jquery.fileupload.js"></script>    
        <script src="assets/js/script.js"></script>

    </body>
</html>

No comments:

Post a Comment