I am using this plugin: http://hayageek.com/docs/jquery-upload-file.php on my site.
It is working nice, but I need to reload page after successful upload. There is some Callback afterUploadAll which maybe can do it, but I don´t know how to implement it.
Here is my code, how can I add it to that?:
<h1>Header</h1>
<div class="wrapper">
<div id="uploader">Upload</div>
</div>
<script>
$(document).ready(function()
{
$("#uploader").uploadFile({
url:"upload.php",
fileName:"myfile",
showDone:true,
maxFileSize: 20971520,
showFileCounter: false,
});
</script>