views:

12

answers:

1

I have a TreeView menu on a parent or base base that hosts an IFrame in which content pages corresponding to menu items are loaded. Ideally one of my content pages should dymamically insert its own contextual items into it's section of the TreeView menu.

I have a strong suspicion that jQuery is pretty much the only tool I am familair with that I will be able to use here, but any suggestions as to where to start with this quest will be most appreciated.

+1  A: 

As long as the iFrame content and the parent are not cross-domain, you should be able to access the parent window's DOM with something like:

window.opener.document.getElementById('mytreeview');
Steve Danner
Cool, I'll check that out, thanks.
ProfK