Download links:
To add a JTicker to your site, first add the script file to the HEAD section of your page:
<script src="jticker.js" type="text/javascript"></script>
Next, add a DIV tag to surround the JTicker. In this example, I've given it the id value of "TickerDIV":
<div id="TickerDIV"></div>
Finally, initialize the JTicker object. In this example, I'm initializing the JTicker object to access the "TickerDIV" div, delay 4 seconds (4000 milliseconds) between items, open new windows when the links are clicked, obtain it's data from the "tickerdata.xml" RSS feed, use the fade in/out animation (also accepted: "slide"), and use slow animation speed:
<script>
$(document).ready(function() {
$("#TickerDIV").jticker({
delay: 4000,
newwindow: true,
url: "tickerdata.xml",
transition: "fade",
speed: "slow"
});
});
</script>
To make things easier, use the following JTicker configuration builder: