|
Is there any way through script to call the function in vertical menu css?
Return to Recent Questions
Q:
Is there any way through script to call the function that would
be called if the user clicked a vertical menu css?
A:
You're able to use Javascript for each item, for example:
var bmenuitems = [
["item text", "javascript:your_code_here"]
];
Unfortunately, you can't assign onmouseover/onClick event to each item.
However, you can achieve this by using standard html objects within
items, for example:
var bmenuitems = [
["<div onClick='your_code_here'>item text</div>", "index.html"]
];
Return to Recent Questions
Related:
- March 29, 2009 - How could I call a script instead of specifying a link in vertical drop down menu myspace?
- Jun 08, 2009 - Is it possible to call JScript functions from drag drop javascript?
- Jun 12, 2009 - Is there a way to use smartscrolling function for the top dhtml drop down menu?
- Aug 14, 2009 - I'm trying to simply use API functions to add some properties to my dhtml menu version.
- Sep 04, 2009 - How to use javascript calls when the link is clicked in the collapsing menu?
- Oct 31, 2009 - How to call my own function in the xml dynamic menu?
- Nov 01, 2009 - Is it possible that your web menu maker call some javascript on mouseover?
- Nov 05, 2009 - I tried to use javascript function within the "Title item" of my dynamic menu javascript.
- Nov 08, 2009 - How to call javascript function when the user click on a menus java script Items...
- Dec 20, 2009 - Is it possible to set javascript menu horizontal up so the javascript function runs when clicking a tab?
- September 16, 2010 - I need to know if I can call js functions using the .js file in collapsible tree menu?
|