> Do you just issue the command as "cd ('frame-name')" ? And can you use
> "top" etc?
Yes, there is a few possibilities:
1) If the <iframe> element has a name attribute you can use it
directly.
<iframe name="frameName" ... />
cd(frameName);
2) If the <iframe> element has an ID you can also use it.
<iframe id="frameId" ... />
cd($("frameId").contentWindow);
3) To change the context to the top window again use:
cd(top)
Honza