Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript How to change styles on onload= Re: How to change styles on onload=

#87191
richtestani
Member

put it into a function



window.onload = pre_loader;

function pre_loader() {
javascript:document.getElementById('loader').style.visibility='hidden';
javascript:document.getElementById('loader').style.opacity=0;

}

I don’t think IE support opacity though.