"Multi File Upload with Start Button - Working"
Bootstrap 3.0.0 Snippet by VishwanathKD

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link href="https://rawgithub.com/hayageek/jquery-upload-file/master/css/uploadfile.css" rel="stylesheet"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script src="https://rawgithub.com/hayageek/jquery-upload-file/master/js/jquery.uploadfile.min.js"></script> </head> <body> <div id="mulitplefileuploader">Upload</div> <div id="status"></div> <div id="startbutton" class="ajax-file-upload-green">Start Upload</div> <script> var extraObj = $("#mulitplefileuploader").uploadFile( { url: "upload.php", method: "POST", allowedTypes:"jpg,png,gif,doc,pdf,zip", fileName: "myfile", multiple: true, dragdropWidth:600, autoSubmit:false }); $("#startbutton").click(function() { extraObj.startUpload(); }); </script> </body>

Related: See More


Questions / Comments:

Muy bueno tu trabajo, sin embargo falta el codigo upload.php

shalex (-1) - 4 years ago - Reply -1


Please, help. I am trying to find out where is the upload folder.

Luis Beltrán Vásquez Sequera () - 6 years ago - Reply 0