Hi
I'm using the following JavaScript to create the section level navigation but I have a few questions:
<!--@act NETQUOTEVAR:TOPLEVELSECTIONS_RAW -->
<SCRIPT LANGUAGE = JavaScript>
<!--
function BulletList(pItem)
{
var strIDs = '';
{
for (var i = 1; i <= pItem.length; i++)
{
strIDs += '<div class="LeftNavBackground"><div class="LeftNavContent"><a href=' + pItem[i].sURL + ' accesskey="" class="nav" title="'+ pItem[i].sName + '">'+ pItem[i].sName + '</a></div></div><div class="BlueBoxLine"></div>';
}
}
strIDs += ''
return strIDs
}
-->
</SCRIPT>
1) Can I easily order this alphabetically?
2) Can I only show the section navigation when they have clicked on a department. For example I have 2 department Cards, Gifts and Gifts Wrap. When the customer click on the Cards department I only want them to see what is in that section.
This Community Site has been really valuable and has been a great help to me.
Regards
Darren
I'm using the following JavaScript to create the section level navigation but I have a few questions:
<!--@act NETQUOTEVAR:TOPLEVELSECTIONS_RAW -->
<SCRIPT LANGUAGE = JavaScript>
<!--
function BulletList(pItem)
{
var strIDs = '';
{
for (var i = 1; i <= pItem.length; i++)
{
strIDs += '<div class="LeftNavBackground"><div class="LeftNavContent"><a href=' + pItem[i].sURL + ' accesskey="" class="nav" title="'+ pItem[i].sName + '">'+ pItem[i].sName + '</a></div></div><div class="BlueBoxLine"></div>';
}
}
strIDs += ''
return strIDs
}
-->
</SCRIPT>
1) Can I easily order this alphabetically?
2) Can I only show the section navigation when they have clicked on a department. For example I have 2 department Cards, Gifts and Gifts Wrap. When the customer click on the Cards department I only want them to see what is in that section.
This Community Site has been really valuable and has been a great help to me.
Regards
Darren
Comment