|
home / documentation / reference / scrollimgaltbot
ScrollImgAltBot
- Description:
- The alt text that is applied to the more image in the bottom
scroll bar of scrollable menus.
- Value:
- String, "", or JavaScript expression that returns a String/"".
- Applies To:
- Menus.
- Browser Compatibility:
- ScrollImgAltBot 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. ScrollImgAltBot is applied to the alt property
of the more image in the bottom scroll bar.
- Examples:
// Ok:
ScrollImgAltBot:"Scroll Down",
ScrollImgAltBot:"",
ScrollImgAltBot:(window.scrollable)?"Scroll Down":"",
// if the user defined variable "scrollable" is true,
// then the alt is "Scroll Down"
// Incorrect:
ScrollImgAltBot:Scroll Down, // Strings must be quoted
ScrollImgAltBot:'(window.scrollable)?"Scroll Down":""',
// no quoted expressions
- Default:
- "Scroll menu down"
- See Also:
-
ScrollEnabled,
ScrollOver,
ScrollInterval,
ScrollBarHeight,
ScrollBarColor,
ScrollImgAltTop,
ScrollImgSrcTop,
ScrollImgSrcBot,
ScrollImgWidth,
ScrollImgHeight,
ScrollBothBars,
ScrollHeightMin
|