|
|
Do you plan to implement a fix in the cross browser drop down menu for the pointer?
Return to Recent Questions
Q:
Do you plan to implement a fix in the cross browser drop down menu for the pointer -
many of our users have complained that it is very un-intuitive -
surely it must be possible to change the pointer to a hand if there
is a link. I have tried putting <a> tags in to the menu labels, but
it only changes to a hand if the actual label text is highlighted -
it obviously should change whichever part of the box is highlighted?
Is there no other workaround?
A:
If you set the following parameter:
var itemCursor="pointer";
You'll have the mousepointer being a hand for all items
in the menu.
Unfortunately, you can't change cursor type for different items.
But you can write so:
["<a href='http://deluxe-menu.com/'>Home</a>","", , , , , , , , ],
["Product Info","", , , , , "0", , , ],
["|What's New","", , , , , "0", , , ],
In all items with links you should use <a> tag.
Set this parameter:
var itemCursor="default";
Return to Recent Questions
|