Ive been trying to get a bulleted list of sections (and subsections) that will take customers direct to products, to appear on my pages.
I have used the instructions and code in the Actinic advanced guide but it doesnt appear.
This is the code i put in head section
and this is the code i put in the table cells i wanted the bulleted list to appear
Can anybody help me out?
I have used the instructions and code in the Actinic advanced guide but it doesnt appear.
This is the code i put in head section
<!--@act NETQUOTEVAR:SECTIONTREE_RAW -->
<SCRIPT LANGUAGE = JavaScript>
<!--
function Recurse(pItem) {
for (var i = 1; i <= pItem.length; i++) {
document.write("<UL>");
document.write("<LI>");
document.writeln(pItem[i].sName.link(pItem[i].sURL));
document.write("</LI>");
if (pItem[i].pChild)
{
Recurse(pItem[i].pChild);
}
document.write("</UL>");
}
}
Recurse(section_tree);
-->
</script>
<!--
function Recurse(pItem) {
for (var i = 1; i <= pItem.length; i++) {
document.write("<UL>");
document.write("<LI>");
document.writeln(pItem[i].sName.link(pItem[i].sURL));
document.write("</LI>");
if (pItem[i].pChild)
{
Recurse(pItem[i].pChild);
}
document.write("</UL>");
}
}
Recurse(section_tree);
-->
</script>
Comment