tags:

views:

22

answers:

1

how to make uploadify to redirect on completion of the uploading task

I add this

'oncomplete' : function(){
    location.href="imthepage";
}
+1  A: 

Put a location.href="my_new_page.htm" into the callback of your choice, e.g. onAllComplete.

Pekka
thanks, you mean'oncomplete' : function(){ location.href="imthepage";}but its not working I have given this in the head but after uploading nothing is happening (not redirecting)
Rahul TS
@Rahul maybe show the code - you can edit it into your question.
Pekka
@Rahul better add all the code you use.
Pekka