Forum Moderators: open
<table id="main">
<tr>
<td id="top"><cfinclude template="top.cfm"></td>
</tr>
<tr>
<td id="menu"><cfinclude template="menu.cfm"></td>
<td id="content"><cfinclude template="main.cfm"></td>
</tr>
</table>
"top" is a logo and does not change
"menu" is a navigation menu and does not change
"content" are all static html pages and displayed via links in "menu"
I would like to structure the site so only the element "content" is loaded when the user clicks a link from "menu" so "top" and "menu" do not get reloaded. From what I understand, I need to set up an array of html pages and use onClick to call a function that loads "content" but I have no idea how to do this.
Please advise.