Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: iFrames


Message #1 by Ankur Kalsi <ankurak@q...> on Thu, 8 Mar 2001 09:10:34 -0800
I suppose I should append this as your original question was getting a value
from one page and putting it on the other, the answer is that you simply
need to call the function from page one and pass it to page two:

<script>
	var sValue = window.frames.one.GetAValue()
	window.frames.two.SetAValue(sValue)
</script>


  Return to Index