hi all,
marquee is working fine in my localhost firefox but when i made it live its not working in ff
any ideas why?
thanks in advance
hi all,
marquee is working fine in my localhost firefox but when i made it live its not working in ff
any ideas why?
thanks in advance
Did you dynamically write the <marquee>-tags to the webpage by using PHP?
How is the output? The same as the expected output, but just without a marquee?
I suspect it's not an HTML marquee. Please post the relevent code.
marquee is a deprecated tag.
>when i made it live its not working
By reading that, I assume that you've uploaded it to some kind of online hosting provider.
Can you also give us a link where we can reach that particular webpage?
yes, i have written it dynamically here is my code
<?
$selc="select * from tbl_marquee where status=1 order by order_id asc";
$qwer=mysql_query($selc);
?><marquee behavior="scroll" direction="left" scrollamount="3"><? while($fet=mysql_fetch_assoc($qwer)) { echo $fet['text']." "; ?><img src="<? echo substr(getdata("tbl_marquee_images","image","status=1"),3); ?>" align="absbottom"/><? echo " "; } ?></marquee>
the output is with marquee tag but it is not scrolling.. just test is staying still
its working fine in ie
Just to avoid mistakes, can you try it with a simple marquee tag?
For example: <marquee>TEST</marquee>
tried its not working..
i didn`t host on any online hosters my server is in USA
The host should not make any difference!
Please give us the URL (put just this code in a file, if you like).
I put your code (simplified) in here - http://www.spthorn.dev/aaa.php - does that work in your FF browser? Works all day long for me.
@MidiMagic is correct, though. You shouldn't be using it.
http://www.w3.org/TR/AERT#no-marquee
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.