Implementation - way 1
- Step 1 - upload files style.css, upload.packed.js (it's in js folder), upload.php, upload.swf (it's in js folder) to your server
- Step 2 - include javascript and css files to the head section of your page
<head>upload.packed.js contains: upload.min.js, myupload.js, swfobject.js
<link rel='stylesheet' type='text/css' href='style.css' />
<script type='text/javascript' src='js/jquery-1.7.min.js'></script>
<script type='text/javascript' src='js/upload.packed.js'></script>
</head>
<input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />You can also use other parameters, which are described in the documentation
Implementation - way 2
- Step 1 - upload files style.css, upload.php, jQuery 1.7.min.js (it's in js folder), upload.min.js (it's in js folder), swfobject.js (it's in js folder), myupload.js (it's in js folder), upload.swf (it's in js folder) to your server
- Step 2 - include javascript and css files to the head section of your page
<head>
<link rel='stylesheet' type='text/css' href='style.css' />
<script type='text/javascript' src='js/jquery-1.7.min.js'></script>
<script type='text/javascript' src='js/upload.min.js'></script>
<script type='text/javascript' src='js/swfobject.js'></script>
<script type='text/javascript' src='js/myupload.js'></script> <head/>
<input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />You can also use other parameters, which are described in the documentation