Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
PHP File Uploader
»
Re: redirect after multiple upload
redirect after multiple upload
Last post 10-26-2011, 6:43 AM by
fmortara
. 1 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
10-26-2011, 6:18 AM
70528
fmortara
Joined on 10-26-2011
Posts 3
redirect after multiple upload
Reply
Quote
I want to redirect a php page after i do a multiple upload.
I try to put
<script type='text/javascript'>
function CuteWebUI_AjaxUploader_OnTaskComplete(task)
{
window.location.reload();
}
</script>
but it run after first file uploaded.
How to can I do this?
10-26-2011, 6:43 AM
70529
in reply to
70528
fmortara
Joined on 10-26-2011
Posts 3
Re: redirect after multiple upload
Reply
Quote
Ok, I've found the solution...
<script type='text/javascript'>
function CuteWebUI_AjaxUploader_OnPostback()
{
window.location.reload();
}
</script>
bye to all!