|
home / documentation / reference / showlinkcursor
ShowLinkCursor
- Description:
- Boolean value indicating whether the mouse pointer should change to
a "link" cursor when the mouse hovers over a menu item with a link.
- Value:
- Boolean (true or false), Integer (1=true, 0=false),
or JavaScript expression that returns a boolean value.
- Applies To:
- Menu Items.
- Browser Compatibility:
- ShowLinkCursor is not supported in Netscape 4.
- Comments:
- When ShowLinkCursor is set to true, the mouse pointer
will change to a "link" cursor (typically the index finger icon indicating the presence
of a clickable link) when the mouse hovers over a menu item with a link. When
false or when over menu items without actual links, the mouse pointer is
not changed.
- Examples:
// Ok:
ShowLinkCursor:true,
ShowLinkCursor:0,
ShowLinkCursor:(window.thisPage=="cf")?1:0,
// if the user defined variable "thisPage" is "cf",
// ShowLinkCursor is true
// Incorrect:
ShowLinkCursor:"false", // quotes not allowed around booleans
ShowLinkCursor:"0",
ShowLinkCursor:'(window.thisPage=="cf")?1:0',
// no quoted expressions
- Default:
- false
- See Also:
-
StatusDisplayLink
|