> 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
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---