I have id of the submenu. How can retrieve id of the parent javascript layer menu?
Return to Recent Questions
Q:
In javascriptcoding.
I have id of the submenu.
How can retrieve id of the parent menu?
A:
You can try to use the following function
function dm_ext_getSubmenuParams (menuInd, submenuInd)
Returns submenu parameters in the array:
[submenu_id, items_count, parent_item_id, submenu_level, is_horizontal]
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
Using this function you can retrieve the parent_item_id.
More info see:
http://deluxe-menu.com/functions-info.html
Return to Recent Questions
|