Here is what I have:
<frameset id=body rows="50%,50%,*">
<frame name=data1 src="./launch.htm">
<frame name=data2" src="./run.php">
<frame name=data3" src="./blank.htm">
</frameset>
The data2 frame has a nested <IFRAME> named "controller". That IFRAME has a form with a focus() call to place the cursor in the starting form position.
I don't know how to parse out focus() to work because of this complex iframe scenario. I've tried many things like parent.frames[0].frames['data2'].frames['controller']. document.forms['formname'].elements['fieldname'].focus(); ... sadly won't work for me.
Can anyone see this more clearly? I would so much appreciate your expertise and time, so much
%Julie%
<frameset id=body rows="50%,50%,*">
<frame name=data1 src="./launch.htm">
<frame name=data2" src="./run.php">
<frame name=data3" src="./blank.htm">
</frameset>
The data2 frame has a nested <IFRAME> named "controller". That IFRAME has a form with a focus() call to place the cursor in the starting form position.
I don't know how to parse out focus() to work because of this complex iframe scenario. I've tried many things like parent.frames[0].frames['data2'].frames['controller']. document.forms['formname'].elements['fieldname'].focus(); ... sadly won't work for me.
Can anyone see this more clearly? I would so much appreciate your expertise and time, so much
%Julie%