I have managed to get the JavaScript for my Marquee working now but have come across some problems in moving from Firefox to IE7
the code to addEventListener worked OK in firefox but I have found a tighter methos of doing it
if (typeof window.addEventListener != "undefined" ) {
window.addEventListener("load", populatemarq, false);
}else if (typeof window.attachEvent != "undefined" ) {
window.attachEvent("load", populatemarq, false);
} else { if (window.onload != null) {
var oldOnload = window.onload; window.onload = function ( e ){ oldOnload ( e ); populatemarq();};
}else
window.onload = populatemarq;}
This code seems to load OK but still doesnt fire the populate function in IE7 - any Ideas
Should I look at the function - AddBodyOnloadEventHandler( MyBase.Page, "populatemarq")
and if this is correct how do I access it (currently it says AddVodyOnloadEventHandler is not declared ???)