|
|
|
|
scrollingTicker.js Functions
Variables
Libraries
TechNotes
|
|
The purpose of this library is to display one or several scrolling tickers in DIV tags.
You can call ticker_add several times to create your scrolling tickers.
Once created, you can control them using the name of the DIV tag as ID.
JavaScript Sample Code
<DIV ID="TICKER"
style="margin-top:4px; overflow:hidden; width:100%; height:23px;"
valign=center
>This is the scrolling ticker area</DIV>
<SCRIPT>
ticker_add("TICKER", 1, false)
ticker_start("TICKER", "I'm scrolling!")
</SCRIPT> |
|
|
|