M
Matthew Crouch
Sorry, more dumb newb questions.
I've got part of a page that seems to be rendering just fine. It's built by:
function writeTabPanel(){
var tpText = '';
tpText += '<div id="';
tpText += this.tab.id;
[...]
tpText += '">';
tpText += '</iframe>';
document.write(tpText);
}
and i'd like to be able to see the source so i can tell where i lost the
value of a couple variable. but all i can find is the place where this
is called:
var tabPanel2 = new tabPanel(tab2,panel2,document.forms[0],0);
tabPanel2.writeTabPanel();
//show first panel
showPanel("tab1","panel1",this.form);
I've got part of a page that seems to be rendering just fine. It's built by:
function writeTabPanel(){
var tpText = '';
tpText += '<div id="';
tpText += this.tab.id;
[...]
tpText += '">';
tpText += '</iframe>';
document.write(tpText);
}
and i'd like to be able to see the source so i can tell where i lost the
value of a couple variable. but all i can find is the place where this
is called:
var tabPanel2 = new tabPanel(tab2,panel2,document.forms[0],0);
tabPanel2.writeTabPanel();
//show first panel
showPanel("tab1","panel1",this.form);