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 Link to comment https://forums.phpfreaks.com/topic/12368-how-to-print-the-value-of-a-variable-in-the-inline-frame/ 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 Link to comment https://forums.phpfreaks.com/topic/12368-how-to-print-the-value-of-a-variable-in-the-inline-frame/#findComment-47352 Share on other sites More sharing options...
kharbat Posted June 19, 2006 Author Share Posted June 19, 2006 thank you very much! Link to comment https://forums.phpfreaks.com/topic/12368-how-to-print-the-value-of-a-variable-in-the-inline-frame/#findComment-47453 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.