Sorry for the delay. Ok, try the attached modified ajaxticker.js. Then, on your page, you would have something like the below:
Code:
<script type="text/javascript">
var xmlfile="tickercontent.txt" //path to ticker txt file on your server.
//ajax_ticker(xmlfile, divId, divClass, delay, optionalfadeornot)
var myticker=new ajax_ticker(xmlfile, "ajaxticker1", "someclass", 3500, "fade")
myticker.adddropdown("dropdown", "City ")
</script>
<div id="dropdown"></div>
Notice the part in red, which is new from the default set up. Basically, create a blank div to house the drop down, give it an ID, and pass that into adddropdown(). The second parameter ("City") btw should be the prefix you wish to show in each OPTION's displayed text.
Bookmarks