Currently I am able to add my menu to a frameset that just uses rows with
this code:
if (window == top) {
//this obtains the body tag element of the document
var theBody = document.getEle mentsByTagName( 'body')[0];
//this inserts our menu as the first element in the body
theBody.insertB efore(menuDiv, theBody.childNo des[0]);
}
However if a frameset uses columns then this code does not add my menu to
any of the frames. I have looked on google for help but can't find any.
Could someone help me figure out how to add my menu to a page that uses
columns.
Joseph Scoccimaro
this code:
if (window == top) {
//this obtains the body tag element of the document
var theBody = document.getEle mentsByTagName( 'body')[0];
//this inserts our menu as the first element in the body
theBody.insertB efore(menuDiv, theBody.childNo des[0]);
}
However if a frameset uses columns then this code does not add my menu to
any of the frames. I have looked on google for help but can't find any.
Could someone help me figure out how to add my menu to a page that uses
columns.
Joseph Scoccimaro
Comment