|
home / documentation / reference / scrollimgalttop
ScrollImgAltTop
- Description:
- The alt text that is applied to the more image in the top
scroll bar of scrollable menus.
- Value:
- String, "", or JavaScript expression that returns a String/"".
- Applies To:
- Menus.
- Browser Compatibility:
- ScrollImgAltTop is supported in all browsers.
- Comments:
- "More" images are the (usually) triangular images that appear
within a scroll bar denoting the existence of more menu items that can be
scrolled to. ScrollImgAltTop is applied to the alt property
of the more image in the top scroll bar.
- Examples:
// Ok:
ScrollImgAltTop:"Scroll Up",
ScrollImgAltTop:"",
ScrollImgAltTop:(window.scrollable)?"Scroll Up":"",
// if the user defined variable "scrollable" is true,
// then the alt is "Scroll Up"
// Incorrect:
ScrollImgAltTop:Scroll Up, // Strings must be quoted
ScrollImgAltTop:'(window.scrollable)?"Scroll Up":""',
// no quoted expressions
- Default:
- "Scroll menu up"
- See Also:
-
ScrollEnabled,
ScrollOver,
ScrollInterval,
ScrollBarHeight,
ScrollBarColor,
ScrollImgSrcTop,
ScrollImgAltBot,
ScrollImgSrcBot,
ScrollImgWidth,
ScrollImgHeight,
ScrollBothBars,
ScrollHeightMin
|