kharbat Posted June 19, 2006 Share Posted June 19, 2006 I have 2 pagespage1.htmpage2.htmthere is an inline frame in page one refers to page2...the is a javascript in page2 such asvar inner_variable = "hello";how can i print the value of this variable from the parent page "page1ThanksAhmad Quote Link to comment Share on other sites More sharing options...
nogray Posted June 19, 2006 Share Posted June 19, 2006 I am not really sure what do you mean by printing the value, but you can access the iframe document object using this code[code]<html><script>var page2_doc = "";function assign_page2(){ page2_doc = document.getElementById('page2').contentWindow.document;}</head><body onload="assign_page2();"><iframe id="page2" name="page2" src="page2.html"></iframe></body></html>[/code]you can access any object in the page 2 using the page2_docP.S. Both pages must be in the same domain Quote Link to comment Share on other sites More sharing options...
kharbat Posted June 19, 2006 Author Share Posted June 19, 2006 thank you very much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.