Javascript Error: Not Implemented fix.
This error, "Not Implemented", can be caused when running JavaScript in IE. Tested in IE7 so far. The javascript may look as follows.
window.onload = foobar();
This will function properly, but IE7 and maybe before or after will trigger a strange error. To get rid of this error, simply remove the () from foobar(). It should look like,
window.onload = foobar;
If you need to run more than one function than just foobar() on load, do the following.
window.onload = foobar(){
foobar1();
foobar2();
foobar3();
}
[Click to add or edit comments])
Please prepend comments below including a date