Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how can i pass my data to iframe? some solution i found on the internet uses form having the iframe as it's target, but it is not applicable on my case. I need to pass large javascript variable to a form in iframe.

share|improve this question
Is the frame hosted on the same domain as your page? – Paulpro Sep 8 '11 at 6:22
thanks, this problem was solved – user934167 Nov 23 '11 at 3:49

2 Answers

Have you tried parent.your_var

share|improve this answer
thanks, that does it – user934167 Sep 8 '11 at 6:49
contentWindow.parent.myVariable
share|improve this answer
thanks, this problem was solved – user934167 Nov 23 '11 at 3:49

Your Answer

 
discard

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