i have a page inside it a iframe inside this iframe i do my upload file staff all what i want to do here is how to hide the progress bar or make it not working when a post back happens inside this iframe in javascript
Regards
i have a page inside it a iframe inside this iframe i do my upload file staff all what i want to do here is how to hide the progress bar or make it not working when a post back happens inside this iframe in javascript
Regards
You can't hide the iframe status, but you can work around it to achieve the same result:
You can upload files via XHR2. This isn't supported by many browsers yet due to the draft being quiet new.
For IE users you can create an htmlfile
(More info Here) that mimics an iframe but isn't part of the DOM using activeX: new ActiveXObject("htmlfile");
For those that do not support the previous you can use alternatives such as a flash plugin. For more info about these alternatives check this post.
As a quick note, both jqUploader's and jquery-multifile-uploader's fall back is the importing of a flash object.