> use it like this cd(frames['idofFrame'])

And also:
1) If the <iframe> element has a name attribute you can use it
directly.
<iframe name="frameName" ... />
cd(frameName);

2) If the <iframe> elemetn 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



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to