Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi i am developing a facebook application in codeigniter which allows user to upload images and videos to my server. i am using iframe to upload images & uploading files using jquery. uploading is working fine. but i need to get the file name in my parent page. . i tried to set session, session value is getting inside iframe page but not getting inside my parent page.how to access that file name? any one please help me... thanks in advance

share|improve this question

2 Answers

Assuming you want to display a filename to prnet iframe, without using jQuery

 <script>
     parent.document.getElemntByid["elemntID"].innerHTML = '<?php echo $yourfilname;?>'
 </script>
share|improve this answer
@Elijan Sejic when i add this code i m getting this error Error: Permission denied for <myservername>; to get property Window.document Source File: – Limi Jerin Apr 18 '11 at 12:07
@Limi Is your iframe on your domain?? This usually means that iframes are not from same domain – Elijan Sejic Apr 18 '11 at 12:11
yes both are in the same domain. – Limi Jerin Apr 18 '11 at 12:14
@Limi subdomain?? As mentioned this is security restriction when trying to set a property from child to a parent iframe on different domains. (to prevent cross Site Scripting). what browser are you using? – Elijan Sejic Apr 18 '11 at 12:21
@Elijan Sejic not the sub domain. i am using mozilla firefox version 3.6.16 – Limi Jerin Apr 18 '11 at 12:30
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.