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.

I have a question like this. I have 2 pages in my web for example and page 1 when submited goes to page 2, and of course with it all its html form elements. My question here is i have an iframe in page1 so how to i send the hidden elements from the iframe to page 2 when( page1 is submited)

share|improve this question

1 Answer

up vote 1 down vote accepted

try this script

<script language="JavaScript" type="text/javascript">

 function fun(iframeid,iframename){
  obj=document.getElementById(iframeid);
   if (obj.tagName=='IFRAME'){
   obj=window.frames[iframename].document.getElementId('myfield1ID').value;

  }
 }
 </script>

and then put the values in page1 hidden element and submit the page...

before the end of script

         document.getElementById('page1hiden').value=obj.value;

this script functiopn you must call it when presing the button to submit the page 1 to p2

share|improve this answer

Your Answer

 
discard

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