In this step you will use the totalComplete client-side event to show an alert dialog box when all files have been uploaded.
| HTML |
Copy Code
|
|---|---|
<script type="text/javascript"> function totalComplete(e, data) { alert("Upload Complete!"); } </script> |
|
Step 2 of 4 Completed
In this step, you used the totalComplete client-side event to show an alert dialog box when all files have been uploaded. In the next step, you will determine the size of the files that can be uploaded.