Ignore above message. Consider this message.
I would like to put cursor styles for menu options.
For example "I would like to keep 'hand symbol' for some menu options and 'arrow symbol' for some menu options".
In my menu it is showing 'text symbol' for all menu options.
For this I followed as below but not succeeded.
An item where I wanted cursor style I put [for example] in menu_data.js file
Code: Select all
aI("showmenu=menu1;text=Generales;itemwidth=150;onfunction=showCursor(this);");
Code: Select all
function showCursor(elm) {
elm.style.cursor="hand";
}
Ganga Krishna.