1) Script Title: Ajax XML Ticker (txt file source)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...ajaxticker.htm
3) Describe problem: Hello,
how I can display more than one script in a unic page?
Thanks,
Andrea
1) Script Title: Ajax XML Ticker (txt file source)
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...ajaxticker.htm
3) Describe problem: Hello,
how I can display more than one script in a unic page?
Thanks,
Andrea
Do you mean multiple tickers on a single page? The script certainly supports this. Just call the initialization code multiple times. For example:
And:Code:<script type="text/javascript"> var xmlfile="tickercontent.txt" //path to ticker txt file on your server. new ajax_ticker(xmlfile, "ajaxticker1", "someclass", 3500, "fade") </script>
Be sure the IDs for each ticker is unique for each instance (code in red).Code:<script type="text/javascript"> var xmlfile2="tickercontent.txt" //path to ticker txt file on your server. new ajax_ticker(xmlfile2, "ajaxticker2", "someclass", 3500, "fade") </script>
Thanks
Hello,
with the same script, how I can rotate images instead text?
Thanks,
Andrea
Bookmarks