Cd
From FirebugWiki
(Redirected from Cd())
By default, command line expressions are relative to the top-level window of the page. This command allows you to use the window of a frame in the page instead. So all expressions will be executed within the context of that frame from then on.
Contents |
[edit] Syntax
cd(window)
[edit] Parameters
[edit] window
Frame window to switch to. (required)
[edit] Examples
cd(document.getElementById("someframe").contentWindow)
Changes to the window of the <frame> with the id someframe.
cd($$("iframe")[0].contentWindow)
Changes to the window of the first <iframe> using the $$ command.