You need to be logged in to post in the forums. If you do not have an account, please sign up first.
Web Ticker not working in Opera
As the title says!!I have a small site I am starting to develop, it has a news ticker running across the top that pulls the text from a SQL db table, in all browsers this works totally fine EXCEPT Opera, I have Opera 10 installed on my PC and N97 and neither show it, it will show on my iPhone running Safari though.
The code I am using is:
<DIV ID="TICKER" STYLE="display:none; border-top:1px solid #CCCCCC; border-bottom:1px solid #CCCCCC; overflow:hidden; background-color:#FFFFFF; width:720px" onmouseover="TICKER_PAUSED=true" onmouseout="TICKER_PAUSED=false">
<?php
$result = mysql_query("SELECT * FROM ticker");
while($newrow = mysql_fetch_row($result))
{
print('<a href="'.$newrow[3].'"><span style="font-weight:bold; color: #000000; border-right: 1px solid #666666; padding: 0px 5px 0px 5px">'.$newrow[1].'</span>');
print('<span style="padding: 0px 5px; font-weight: normal;">'.$newrow[2].'</span></a>');
}
?>
</DIV>
and:
<script type="text/javascript" src="webticker_lib.js" language="javascript"></script>
Any Ideas ?