Wow FF2 supports the marquee tag now. That's new to me. Anyhow, I see what you're saying in FF. Apparently when the marquee tag is fetched via Ajax, it no longer scrolls in that browser. You can get over that by manually starting the marquee when the tab containing the marquee tag is fetched, by using the onajaxpageload event of the script.
Lets say external2.htm is the external page containing the marquee tag:
Code:
<marquee id="mycontent">
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
<p>sdfsdfd</p>
</marquee>
Give the tag an ID. Then, on your main page, do something like the below to manually start the marquee in FF each time the user selects that tab:
Code:
countries.init()
countries.onajaxpageload=function(pageurl){
if (pageurl=='external2.htm')
document.getElementById('mycontent').start()
}
Bookmarks