Revised with the additional hacks needed for IE:
Code:
function initializemarquee(){
var ah = document.getElementsByTagName("a");
for (var b=0;b<ah.length;b++) {
ah[b].setAttribute("onclick","top.location = this.href")
if (ah[b].attachEvent) { ah[b].attachEvent("onclick", breakout) }
}
cross_marquee=document.getElementById("vmarquee");
cross_marquee.style.top=0;
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
}
function breakout() {
top.location = window.event.srcElement.href
}
This is just altering part of the code that is in https://bug500410.bugzilla.mozilla.o....cgi?id=385507
Let me know if you need further help.
Bookmarks