Hi there,
I've implemented a milionic tree vertical menu. One of the submenu's is called products and when i click on this the products.htm page loads, and the products submenu expands. I'm trying to find a way to make sure that when products.htm loads, the products submenu stays expanded as well.
is there a switch that will do this?
best rgds
the kid
Keeping Submenu expanded with tree menu.
-
- Beginner
- Posts: 2
- Joined: Tue Jun 19, 2007 11:24 am
Hi,
Try using the openBranchbyName at the bottom of the products page just before the closing body tag
This assumes that the submenu is named products, you'd use whatever name you have for it.
Ruth
Try using the openBranchbyName at the bottom of the products page just before the closing body tag
Code: Select all
<script type="text/javascript">
openBranchByName("products");
</script>
Ruth