I am running this script:
<script type="text/javascript">
window.onload=function()
{
document.getElementById("loading").style.display = "none";
}
</script>
When I implemented it it my other script stopped working in IE (FF and others work fine)
Why and what should I do to fix this? I am using jQuery if there is a better way to do the above script and eliminate the issue.
Because you are using jQuery already, please do it like this:
or
and be aware adding this at the bottom of your HMTL file.