If there is a way of establishing the width at "runtime" in the javascript dynamic menu?
Return to Recent Questions
Q:
I just need to know if there is a way of establishing the width at "runtime" in the javascript dynamic menu
so that my frame in my frameset can be widened accordingly.
A:
There are no special parameters for menu dimensions.
But you can use submenu IDs. For example, top-menu has ID
"dmXXXm0"
Where XXX - menu index. So, first menu on the page has ID "dm0m0".
So, you can determine menu dimensions so:
document.getElementById('dm0m0').offsetWidth
document.getElementById('dm0m0').offsetHeight
You can also use Javascript API functions to take submenu IDs.
Return to Recent Questions
|