I have this
window.top.onscroll = function(){moveScroll();
}
It works perfect in ie, but in firefox I get permission denied to get property onscroll.
why? and whats the solution?
on top of my page i have done this though var url = document.URL;
url = url.substring(7,url.length);
url = url.substring(0,url.indexOf(":"));
if(isMoz) document.domain = url;