How can I dynamically create a source for a frame using javascript?
Let's say I have one html page with frames. The left frame is simply a list of links that will appear in the right frame. Is it possible using javascript to generate the left frame content on page load?
parent.frameName.document.body will be the body element of this frame, you can use DOM methods (.createElement, .appendChild, .insertBefore) or .innerHTML to fill the frame with content.