Hello Everyone... my names sean and i am a recent addition to the this actinic forum. I would rate my experience of actinic as between an intemediate.
My question is regarding integration of a css/java menu navigation.
how do i modify the following code to allow users to view top level sections and sub sections?
<actinic:variable name="JavaScriptArray" value="All Data From Top Level Sections" />
<SCRIPT LANGUAGE = JavaScript>
<!--
function BulletList(pItem)
{
var strIDs = '<ul>';
{
for (var i = 1; i <= pItem.length; i++)
{
strIDs += '<li><a href=' + pItem[i].sURL + '>'+ pItem[i].sName + '</a></li>';
}
}
strIDs += '</UL>'
return strIDs
}
-->
</SCRIPT>
My question is regarding integration of a css/java menu navigation.
how do i modify the following code to allow users to view top level sections and sub sections?
<actinic:variable name="JavaScriptArray" value="All Data From Top Level Sections" />
<SCRIPT LANGUAGE = JavaScript>
<!--
function BulletList(pItem)
{
var strIDs = '<ul>';
{
for (var i = 1; i <= pItem.length; i++)
{
strIDs += '<li><a href=' + pItem[i].sURL + '>'+ pItem[i].sName + '</a></li>';
}
}
strIDs += '</UL>'
return strIDs
}
-->
</SCRIPT>
Comment