Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Hey, lookit, me again
Well, technically, you can by using an hidden iframe.
You can post your file upload in the iframe, and let the handling be done in the iframe.
Have a javascript function in your main page, that is ready to be called to hide the text, and when the upload finish, on the iframe load, do a call on that javascript function.
I'm talking from memory, but a believe it's something like
Code:
<script type="text/javascript">
top.parent.functionname();
</script>
Of course, replace functioname() with your function.
It could be top.opener, rather than top.parent, I'm not 100% sure, to reach your hidding function.
But this is the road you need to follow if you want to do that.
__________________
Only a biker knows why a dog sticks his head out the window.
|