I get these 2 errors through webdeveloper:
1-
Quote:
Error: syntax error
Source File:datasafexl.com/shared/nav.html
Line: 1
Source Code:
<!doctype html public "-//w3c//dtd html 3.2//en">
|
You can solve this one by changing the first line in nav.html, you need to setup a correct doctype following
the w3c recommendation.
2-
Quote:
Error: elem is null
Source File: datasafexl.com/ieupdate.js
Line: 2
|
Edit ieupdate.js, and change these lines into this:
Code:
var elem = document.getElementById("to_be_rewritten");
if(elem)
document.write(elem.innerHTML);