Loading dynamic content between parts of a Layout

Hello,

I am trying to load content into one pane of a layout, and then have that content be loaded into another pane. I have created a short example of what I’m trying to do.

sample.html

[code]

[/code]

sample_left.html

[code]

This is the left pane

Click Here [/code]

When I click on the link in the left pane, I want content to be loaded into the tabs on the right. The error I get is “loadTabs is not defined”.

Any help would be appreciated! Thanks!

The loadTabs function is called from an iframe. Therefore you need to use parent to call it:

[code]

This is the left pane

Click Here [/code]

Thank you so much! That works perfectly.